diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md b/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md index 2e7f50d43e0b..d8abb1eb35db 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md @@ -3,6 +3,7 @@ ## 5.2.0-beta.2 (Unreleased) ### Features Added +- Added property `SingleCategoryClassifyAction` to `TextAnalyticsActions` to support the new 'Custom Single Classification' API. This action can be used to get a custom classification for an input document or batch of documents. ### Breaking Changes 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 15ddd39097b6..bbca9d7dbb6b 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 @@ -40,6 +40,7 @@ internal AnalyzeActionsResult() { } public System.Collections.Generic.IReadOnlyCollection RecognizeEntitiesResults { get { throw null; } } public System.Collections.Generic.IReadOnlyCollection RecognizeLinkedEntitiesResults { get { throw null; } } public System.Collections.Generic.IReadOnlyCollection RecognizePiiEntitiesResults { get { throw null; } } + public System.Collections.Generic.IReadOnlyCollection SingleCategoryClassifyResults { get { throw null; } } } public partial class AnalyzeHealthcareEntitiesOperation : Azure.PageableOperation { @@ -140,6 +141,14 @@ internal CategorizedEntityCollection() : base (default(System.Collections.Generi public System.Collections.Generic.IReadOnlyCollection Warnings { get { throw null; } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct ClassificationCategory + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public string Category { get { throw null; } } + public double ConfidenceScore { get { throw null; } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct DetectedLanguage { private readonly object _dummy; @@ -736,6 +745,31 @@ internal SentimentConfidenceScores() { } public double Neutral { get { throw null; } } public double Positive { get { throw null; } } } + public partial class SingleCategoryClassifyAction + { + public SingleCategoryClassifyAction(string projectName, string deploymentName) { } + public string DeploymentName { get { throw null; } } + public bool? DisableServiceLogs { get { throw null; } set { } } + public string ProjectName { get { throw null; } } + } + public partial class SingleCategoryClassifyActionResult : Azure.AI.TextAnalytics.TextAnalyticsActionResult + { + internal SingleCategoryClassifyActionResult() { } + public Azure.AI.TextAnalytics.SingleCategoryClassifyResultCollection DocumentsResults { get { throw null; } } + } + public partial class SingleCategoryClassifyResult : Azure.AI.TextAnalytics.TextAnalyticsResult + { + internal SingleCategoryClassifyResult() { } + public Azure.AI.TextAnalytics.ClassificationCategory ClassificationCategory { get { throw null; } } + public System.Collections.Generic.IReadOnlyCollection Warnings { get { throw null; } } + } + public partial class SingleCategoryClassifyResultCollection : System.Collections.ObjectModel.ReadOnlyCollection + { + internal SingleCategoryClassifyResultCollection() : base (default(System.Collections.Generic.IList)) { } + public string DeploymentName { get { throw null; } } + public string ProjectName { get { throw null; } } + public Azure.AI.TextAnalytics.TextDocumentBatchStatistics Statistics { get { throw null; } } + } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct SummarySentence { @@ -784,6 +818,7 @@ public TextAnalyticsActions() { } public System.Collections.Generic.IReadOnlyCollection RecognizeEntitiesActions { get { throw null; } set { } } public System.Collections.Generic.IReadOnlyCollection RecognizeLinkedEntitiesActions { get { throw null; } set { } } public System.Collections.Generic.IReadOnlyCollection RecognizePiiEntitiesActions { get { throw null; } set { } } + public System.Collections.Generic.IReadOnlyCollection SingleCategoryClassifyActions { get { throw null; } set { } } } public partial class TextAnalyticsClient { @@ -857,14 +892,14 @@ public TextAnalyticsClient(System.Uri endpoint, Azure.Core.TokenCredential crede } public partial class TextAnalyticsClientOptions : Azure.Core.ClientOptions { - public TextAnalyticsClientOptions(Azure.AI.TextAnalytics.TextAnalyticsClientOptions.ServiceVersion version = Azure.AI.TextAnalytics.TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_1) { } + public TextAnalyticsClientOptions(Azure.AI.TextAnalytics.TextAnalyticsClientOptions.ServiceVersion version = Azure.AI.TextAnalytics.TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_2) { } public string DefaultCountryHint { get { throw null; } set { } } public string DefaultLanguage { get { throw null; } set { } } public enum ServiceVersion { V3_0 = 1, V3_1 = 2, - V3_2_Preview_1 = 3, + V3_2_Preview_2 = 3, } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] @@ -916,7 +951,7 @@ public static partial class TextAnalyticsModelFactory { [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.AnalyzeActionsResult AnalyzeActionsResult(System.Collections.Generic.IEnumerable extractKeyPhrasesActionResult, System.Collections.Generic.IEnumerable recognizeEntitiesActionResults, System.Collections.Generic.IEnumerable recognizePiiEntitiesActionResults, System.Collections.Generic.IEnumerable recognizeLinkedEntitiesActionsResults, System.Collections.Generic.IEnumerable analyzeSentimentActionsResults) { throw null; } - public static Azure.AI.TextAnalytics.AnalyzeActionsResult AnalyzeActionsResult(System.Collections.Generic.IEnumerable extractKeyPhrasesActionResults, System.Collections.Generic.IEnumerable recognizeEntitiesActionResults, System.Collections.Generic.IEnumerable recognizePiiEntitiesActionResults, System.Collections.Generic.IEnumerable recognizeLinkedEntitiesActionResults, System.Collections.Generic.IEnumerable analyzeSentimentActionResults, System.Collections.Generic.IEnumerable extractSummaryActionResults) { throw null; } + public static Azure.AI.TextAnalytics.AnalyzeActionsResult AnalyzeActionsResult(System.Collections.Generic.IEnumerable extractKeyPhrasesActionResults, System.Collections.Generic.IEnumerable recognizeEntitiesActionResults, System.Collections.Generic.IEnumerable recognizePiiEntitiesActionResults, System.Collections.Generic.IEnumerable recognizeLinkedEntitiesActionResults, System.Collections.Generic.IEnumerable analyzeSentimentActionResults, System.Collections.Generic.IEnumerable extractSummaryActionResults, System.Collections.Generic.IEnumerable singleCategoryClassifyActionResults) { throw null; } public static Azure.AI.TextAnalytics.AnalyzeHealthcareEntitiesResult AnalyzeHealthcareEntitiesResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, System.Collections.Generic.IEnumerable healthcareEntities, System.Collections.Generic.IEnumerable entityRelations, System.Collections.Generic.IEnumerable warnings) { throw null; } public static Azure.AI.TextAnalytics.AnalyzeHealthcareEntitiesResult AnalyzeHealthcareEntitiesResult(string id, string code, string message) { throw null; } public static Azure.AI.TextAnalytics.AnalyzeHealthcareEntitiesResultCollection AnalyzeHealthcareEntitiesResultCollection(System.Collections.Generic.IEnumerable list, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string modelVersion) { throw null; } @@ -930,6 +965,7 @@ public static partial class TextAnalyticsModelFactory public static Azure.AI.TextAnalytics.CategorizedEntity CategorizedEntity(string text, string category, string subCategory, double score) { throw null; } public static Azure.AI.TextAnalytics.CategorizedEntity CategorizedEntity(string text, string category, string subCategory, double score, int offset, int length) { throw null; } public static Azure.AI.TextAnalytics.CategorizedEntityCollection CategorizedEntityCollection(System.Collections.Generic.IList entities, System.Collections.Generic.IList warnings = null) { throw null; } + public static Azure.AI.TextAnalytics.ClassificationCategory ClassificationCategory(string category, double confidenceScore) { throw null; } public static Azure.AI.TextAnalytics.DetectedLanguage DetectedLanguage(string name, string iso6391Name, double confidenceScore, System.Collections.Generic.IList warnings = null) { throw null; } public static Azure.AI.TextAnalytics.DetectLanguageResult DetectLanguageResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error) { throw null; } public static Azure.AI.TextAnalytics.DetectLanguageResult DetectLanguageResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.DetectedLanguage detectedLanguage) { throw null; } @@ -980,6 +1016,11 @@ public static partial class TextAnalyticsModelFactory public static Azure.AI.TextAnalytics.SentenceSentiment SentenceSentiment(Azure.AI.TextAnalytics.TextSentiment sentiment, string text, double positiveScore, double neutralScore, double negativeScore) { throw null; } public static Azure.AI.TextAnalytics.SentenceSentiment SentenceSentiment(Azure.AI.TextAnalytics.TextSentiment sentiment, string text, double positiveScore, double neutralScore, double negativeScore, int offset, int length, System.Collections.Generic.IEnumerable opinions) { throw null; } public static Azure.AI.TextAnalytics.SentimentConfidenceScores SentimentConfidenceScores(double positiveScore, double neutralScore, double negativeScore) { throw null; } + public static Azure.AI.TextAnalytics.SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult(Azure.AI.TextAnalytics.SingleCategoryClassifyResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.SingleCategoryClassifyResult SingleCategoryClassifyResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error) { throw null; } + public static Azure.AI.TextAnalytics.SingleCategoryClassifyResult SingleCategoryClassifyResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.ClassificationCategory classificationCategory, System.Collections.Generic.IEnumerable warnings = null) { throw null; } + public static Azure.AI.TextAnalytics.SingleCategoryClassifyResultCollection SingleCategoryClassifyResultCollection(System.Collections.Generic.IEnumerable classificationResultList, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string projectName, string deploymentName) { throw null; } public static Azure.AI.TextAnalytics.SummarySentence SummarySentence(string text, double rankScore, int offset, int length) { throw null; } public static Azure.AI.TextAnalytics.SummarySentenceCollection SummarySentenceCollection(System.Collections.Generic.IEnumerable sentences, System.Collections.Generic.IEnumerable warnings = null) { throw null; } public static Azure.AI.TextAnalytics.TargetSentiment TargetSentiment(Azure.AI.TextAnalytics.TextSentiment sentiment, string text, double positiveScore, double negativeScore, int offset, int length) { throw null; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample10_SingleCategoryClassify.md b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample10_SingleCategoryClassify.md new file mode 100644 index 000000000000..d57116c89e17 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample10_SingleCategoryClassify.md @@ -0,0 +1,90 @@ +# Perform Custom Single Category Classification on Documents +This sample demonstrates how to run a single category classification action in one or more documents. 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 perform a single category classify on 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:CreateTextAnalyticsClient +string endpoint = ""; +string apiKey = ""; +var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); +``` + +## Performing Single Category Classify on one or multiple documents + +To perform Custom Single Category Classification in one or multiple documents, set up a `SingleCategoryClassifyAction` and call `StartAnalyzeActionsAsync` on the documents. The result is a Long Running Operation of type `AnalyzeActionsOperation` which polls for the results from the API. + +```C# Snippet:TextAnalyticsSingleCategoryClassifyAsync +// Get input document. +string document = @"I need a reservation for an indoor restaurant in China. Please don't stop the music. Play music and add it to my playlist."; + +// Prepare analyze operation input. You can add multiple documents to this list and perform the same +// operation to all of them. +var batchInput = new List +{ + document +}; + +// Set project and deployment names of the target model +string projectName = ""; +string deploymentName = ""; + +var singleCategoryClassifyAction = new SingleCategoryClassifyAction(projectName, deploymentName); + +TextAnalyticsActions actions = new TextAnalyticsActions() +{ + SingleCategoryClassifyActions = new List() { singleCategoryClassifyAction } +}; + +// Start analysis process. +AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchInput, actions); + +await operation.WaitForCompletionAsync(); +``` + +The returned `AnalyzeActionsOperation` contains general information about the status of the operation. It can be requested while the operation is running or when it has completed. For example: + +```C# Snippet:TextAnalyticsSingleCategoryClassifyOperationStatus +// View operation status. +Console.WriteLine($"AnalyzeActions operation has completed"); +Console.WriteLine(); + +Console.WriteLine($"Created On : {operation.CreatedOn}"); +Console.WriteLine($"Expires On : {operation.ExpiresOn}"); +Console.WriteLine($"Id : {operation.Id}"); +Console.WriteLine($"Status : {operation.Status}"); +Console.WriteLine($"Last Modified: {operation.LastModified}"); +Console.WriteLine(); +``` + +To view the final results of the long-running operation: + +```C# Snippet:TextAnalyticsSingleCategoryClassifyAsyncViewResults +// View operation results. +await foreach (AnalyzeActionsResult documentsInPage in operation.Value) +{ + IReadOnlyCollection singleClassificationActionResults = documentsInPage.SingleCategoryClassifyResults; + + foreach (SingleCategoryClassifyActionResult classificationActionResults in singleClassificationActionResults) + { + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.ClassificationCategory.Category}\" predicted with a confidence score of {documentResults.ClassificationCategory.ConfidenceScore}."); + Console.WriteLine(); + } + } +} +``` + +To see the full example source files, see: + +* [Synchronously SingleCategoryClassify](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassify.cs) +* [Asynchronously SingleCategoryClassify](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyAsync.cs) +* [Synchronously SingleCategoryClassify Convenience](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenience.cs) +* [Asynchronously SingleCategoryClassify Convenience](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenienceAsync.cs) + +[DefaultAzureCredential]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/identity/Azure.Identity/README.md +[README]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/README.md diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsResult.cs index b0fc68ca4336..d2e4ea2201ce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsResult.cs @@ -16,7 +16,9 @@ internal AnalyzeActionsResult( IReadOnlyCollection recognizePiiEntitiesActionResults, IReadOnlyCollection recognizeLinkedEntitiesActionResults, IReadOnlyCollection analyzeSentimentActionResults, - IReadOnlyCollection extractSummaryActionResults) + IReadOnlyCollection extractSummaryActionResults, + IReadOnlyCollection singleCategoryClassifyActionResults + ) { ExtractKeyPhrasesResults = extractKeyPhrasesActionResults; RecognizeEntitiesResults = recognizeEntitiesActionResults; @@ -24,6 +26,7 @@ internal AnalyzeActionsResult( RecognizeLinkedEntitiesResults = recognizeLinkedEntitiesActionResults; AnalyzeSentimentResults = analyzeSentimentActionResults; ExtractSummaryResults = extractSummaryActionResults; + SingleCategoryClassifyResults = singleCategoryClassifyActionResults; } /// @@ -55,5 +58,10 @@ internal AnalyzeActionsResult( /// Determines the collection of . /// public IReadOnlyCollection ExtractSummaryResults { get; } + + /// + /// Determines the collection of . + /// + public IReadOnlyCollection SingleCategoryClassifyResults { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClassificationCategory.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClassificationCategory.cs new file mode 100644 index 000000000000..0178eaee9ca8 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClassificationCategory.cs @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// + /// A classification of an input document extracted by the Single Category Classification + /// operation. The service attributes a confidence score to the predicted category + /// for measuring how confident the model is in the returned prediction. + /// + public readonly struct ClassificationCategory + { + internal ClassificationCategory(SingleClassificationDocument classification) + { + Category = classification.Classification.Category; + ConfidenceScore = classification.Classification.ConfidenceScore; + } + + internal ClassificationCategory(ClassificationResult classification) + { + Category = classification.Category; + ConfidenceScore = classification.ConfidenceScore; + } + + /// + /// Gets the predicted category for the respective document. The possible values + /// of the category string depends on the custom categories set in the Text Analytics + /// service for the targetted project. + /// + public string Category { get; } + + /// + /// Gets the confidence score of the predictive category. This is a value + /// between 0 and 1 that represents the model's confidence in the predicted + /// class, which can be used as an indicator of the probability of correctness. + /// + public double ConfidenceScore { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.Serialization.cs index c86c4f674506..da14b8a0e8f9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.Serialization.cs @@ -26,7 +26,7 @@ internal static AnalyzeTasks DeserializeAnalyzeTasks(JsonElement element) Optional> sentimentAnalysisTasks = default; Optional> extractiveSummarizationTasks = default; Optional> customEntityRecognitionTasks = default; - Optional> customSingleClassificationTasks = default; + Optional> customSingleClassificationTasks = default; Optional> customMultiClassificationTasks = default; foreach (var property in element.EnumerateObject()) { @@ -162,10 +162,10 @@ internal static AnalyzeTasks DeserializeAnalyzeTasks(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); + List array = new List(); foreach (var item in property.Value.EnumerateArray()) { - array.Add(TasksStateTasksCustomSingleClassificationTasksItem.DeserializeTasksStateTasksCustomSingleClassificationTasksItem(item)); + array.Add(CustomSingleClassificationTasksItem.DeserializeCustomSingleClassificationTasksItem(item)); } customSingleClassificationTasks = array; continue; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs index 17e95be1e8cf..36e71d78e761 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs @@ -31,7 +31,7 @@ internal AnalyzeTasks(int completed, int failed, int inProgress, int total) SentimentAnalysisTasks = new ChangeTrackingList(); ExtractiveSummarizationTasks = new ChangeTrackingList(); CustomEntityRecognitionTasks = new ChangeTrackingList(); - CustomSingleClassificationTasks = new ChangeTrackingList(); + CustomSingleClassificationTasks = new ChangeTrackingList(); CustomMultiClassificationTasks = new ChangeTrackingList(); } @@ -49,7 +49,7 @@ internal AnalyzeTasks(int completed, int failed, int inProgress, int total) /// /// /// - internal AnalyzeTasks(int completed, int failed, int inProgress, int total, IReadOnlyList entityRecognitionTasks, IReadOnlyList entityRecognitionPiiTasks, IReadOnlyList keyPhraseExtractionTasks, IReadOnlyList entityLinkingTasks, IReadOnlyList sentimentAnalysisTasks, IReadOnlyList extractiveSummarizationTasks, IReadOnlyList customEntityRecognitionTasks, IReadOnlyList customSingleClassificationTasks, IReadOnlyList customMultiClassificationTasks) + internal AnalyzeTasks(int completed, int failed, int inProgress, int total, IReadOnlyList entityRecognitionTasks, IReadOnlyList entityRecognitionPiiTasks, IReadOnlyList keyPhraseExtractionTasks, IReadOnlyList entityLinkingTasks, IReadOnlyList sentimentAnalysisTasks, IReadOnlyList extractiveSummarizationTasks, IReadOnlyList customEntityRecognitionTasks, IReadOnlyList customSingleClassificationTasks, IReadOnlyList customMultiClassificationTasks) { Completed = completed; Failed = failed; @@ -77,7 +77,7 @@ internal AnalyzeTasks(int completed, int failed, int inProgress, int total, IRea public IReadOnlyList SentimentAnalysisTasks { get; } public IReadOnlyList ExtractiveSummarizationTasks { get; } public IReadOnlyList CustomEntityRecognitionTasks { get; } - public IReadOnlyList CustomSingleClassificationTasks { get; } + public IReadOnlyList CustomSingleClassificationTasks { get; } public IReadOnlyList CustomMultiClassificationTasks { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.Serialization.cs index d8d7396630c8..b9c741e77014 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.Serialization.cs @@ -15,15 +15,14 @@ internal partial class CustomEntitiesTaskParameters : IUtf8JsonSerializable void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) { writer.WriteStartObject(); - if (Optional.IsDefined(ProjectName)) + writer.WritePropertyName("project-name"); + writer.WriteStringValue(ProjectName); + writer.WritePropertyName("deployment-name"); + writer.WriteStringValue(DeploymentName); + if (Optional.IsDefined(LoggingOptOut)) { - writer.WritePropertyName("projectName"); - writer.WriteStringValue(ProjectName); - } - if (Optional.IsDefined(DeploymentName)) - { - writer.WritePropertyName("deploymentName"); - writer.WriteStringValue(DeploymentName); + writer.WritePropertyName("loggingOptOut"); + writer.WriteBooleanValue(LoggingOptOut.Value); } if (Optional.IsDefined(StringIndexType)) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.cs index dd918ce24d69..d1a13d9bb3d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.cs @@ -5,18 +5,35 @@ #nullable disable +using System; + namespace Azure.AI.TextAnalytics.Models { /// The CustomEntitiesTaskParameters. internal partial class CustomEntitiesTaskParameters { /// Initializes a new instance of CustomEntitiesTaskParameters. - public CustomEntitiesTaskParameters() + /// + /// + /// or is null. + public CustomEntitiesTaskParameters(string projectName, string deploymentName) { + if (projectName == null) + { + throw new ArgumentNullException(nameof(projectName)); + } + if (deploymentName == null) + { + throw new ArgumentNullException(nameof(deploymentName)); + } + + ProjectName = projectName; + DeploymentName = deploymentName; } - public string ProjectName { get; set; } - public string DeploymentName { get; set; } + public string ProjectName { get; } + public string DeploymentName { get; } + public bool? LoggingOptOut { get; set; } public StringIndexType? StringIndexType { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.Serialization.cs index 4432c0e08443..dfbffed0afae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.Serialization.cs @@ -15,15 +15,14 @@ internal partial class CustomMultiClassificationTaskParameters : IUtf8JsonSerial void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) { writer.WriteStartObject(); - if (Optional.IsDefined(ProjectName)) + writer.WritePropertyName("project-name"); + writer.WriteStringValue(ProjectName); + writer.WritePropertyName("deployment-name"); + writer.WriteStringValue(DeploymentName); + if (Optional.IsDefined(LoggingOptOut)) { - writer.WritePropertyName("projectName"); - writer.WriteStringValue(ProjectName); - } - if (Optional.IsDefined(DeploymentName)) - { - writer.WritePropertyName("deploymentName"); - writer.WriteStringValue(DeploymentName); + writer.WritePropertyName("loggingOptOut"); + writer.WriteBooleanValue(LoggingOptOut.Value); } writer.WriteEndObject(); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.cs index 3d7edcde974c..44090d6ec3cd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.cs @@ -5,17 +5,34 @@ #nullable disable +using System; + namespace Azure.AI.TextAnalytics.Models { /// The CustomMultiClassificationTaskParameters. internal partial class CustomMultiClassificationTaskParameters { /// Initializes a new instance of CustomMultiClassificationTaskParameters. - public CustomMultiClassificationTaskParameters() + /// + /// + /// or is null. + public CustomMultiClassificationTaskParameters(string projectName, string deploymentName) { + if (projectName == null) + { + throw new ArgumentNullException(nameof(projectName)); + } + if (deploymentName == null) + { + throw new ArgumentNullException(nameof(deploymentName)); + } + + ProjectName = projectName; + DeploymentName = deploymentName; } - public string ProjectName { get; set; } - public string DeploymentName { get; set; } + public string ProjectName { get; } + public string DeploymentName { get; } + public bool? LoggingOptOut { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.Serialization.cs index 62419a5f4f02..5d96c7ef6108 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.Serialization.cs @@ -15,15 +15,14 @@ internal partial class CustomSingleClassificationTaskParameters : IUtf8JsonSeria void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) { writer.WriteStartObject(); - if (Optional.IsDefined(ProjectName)) + writer.WritePropertyName("project-name"); + writer.WriteStringValue(ProjectName); + writer.WritePropertyName("deployment-name"); + writer.WriteStringValue(DeploymentName); + if (Optional.IsDefined(LoggingOptOut)) { - writer.WritePropertyName("projectName"); - writer.WriteStringValue(ProjectName); - } - if (Optional.IsDefined(DeploymentName)) - { - writer.WritePropertyName("deploymentName"); - writer.WriteStringValue(DeploymentName); + writer.WritePropertyName("loggingOptOut"); + writer.WriteBooleanValue(LoggingOptOut.Value); } writer.WriteEndObject(); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.cs index 8245ca8c3513..078a10ae94ba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.cs @@ -5,17 +5,34 @@ #nullable disable +using System; + namespace Azure.AI.TextAnalytics.Models { /// The CustomSingleClassificationTaskParameters. internal partial class CustomSingleClassificationTaskParameters { /// Initializes a new instance of CustomSingleClassificationTaskParameters. - public CustomSingleClassificationTaskParameters() + /// + /// + /// or is null. + public CustomSingleClassificationTaskParameters(string projectName, string deploymentName) { + if (projectName == null) + { + throw new ArgumentNullException(nameof(projectName)); + } + if (deploymentName == null) + { + throw new ArgumentNullException(nameof(deploymentName)); + } + + ProjectName = projectName; + DeploymentName = deploymentName; } - public string ProjectName { get; set; } - public string DeploymentName { get; set; } + public string ProjectName { get; } + public string DeploymentName { get; } + public bool? LoggingOptOut { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksCustomSingleClassificationTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.Serialization.cs similarity index 82% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksCustomSingleClassificationTasksItem.Serialization.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.Serialization.cs index 07a84aeb66ac..0ec62ad8712c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksCustomSingleClassificationTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.Serialization.cs @@ -12,9 +12,9 @@ namespace Azure.AI.TextAnalytics.Models { - internal partial class TasksStateTasksCustomSingleClassificationTasksItem + internal partial class CustomSingleClassificationTasksItem { - internal static TasksStateTasksCustomSingleClassificationTasksItem DeserializeTasksStateTasksCustomSingleClassificationTasksItem(JsonElement element) + internal static CustomSingleClassificationTasksItem DeserializeCustomSingleClassificationTasksItem(JsonElement element) { Optional results = default; DateTimeOffset lastUpdateDateTime = default; @@ -48,7 +48,7 @@ internal static TasksStateTasksCustomSingleClassificationTasksItem DeserializeTa continue; } } - return new TasksStateTasksCustomSingleClassificationTasksItem(lastUpdateDateTime, taskName.Value, status, results.Value); + return new CustomSingleClassificationTasksItem(lastUpdateDateTime, taskName.Value, status, results.Value); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksCustomSingleClassificationTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.cs similarity index 50% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksCustomSingleClassificationTasksItem.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.cs index 0d8bc50ed62c..688815726b1f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksCustomSingleClassificationTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.cs @@ -11,21 +11,21 @@ namespace Azure.AI.TextAnalytics.Models { /// The TasksStateTasksCustomSingleClassificationTasksItem. - internal partial class TasksStateTasksCustomSingleClassificationTasksItem : TaskState + internal partial class CustomSingleClassificationTasksItem : TaskState { - /// Initializes a new instance of TasksStateTasksCustomSingleClassificationTasksItem. + /// Initializes a new instance of CustomSingleClassificationTasksItem. /// /// - internal TasksStateTasksCustomSingleClassificationTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) + internal CustomSingleClassificationTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) { } - /// Initializes a new instance of TasksStateTasksCustomSingleClassificationTasksItem. + /// Initializes a new instance of CustomSingleClassificationTasksItem. /// /// /// /// - internal TasksStateTasksCustomSingleClassificationTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, CustomSingleClassificationResult results) : base(lastUpdateDateTime, taskName, status) + internal CustomSingleClassificationTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, CustomSingleClassificationResult results) : base(lastUpdateDateTime, taskName, status) { Results = results; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs index 7ca2731b4ec9..59d858f79b42 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs @@ -28,7 +28,6 @@ public JobManifestTasks() CustomMultiClassificationTasks = new ChangeTrackingList(); } public IList CustomEntityRecognitionTasks { get; } - public IList CustomSingleClassificationTasks { get; } public IList CustomMultiClassificationTasks { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomEntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomEntitiesTaskParameters.cs index cba9b95cbdab..9f198bfb0289 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomEntitiesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomEntitiesTaskParameters.cs @@ -5,8 +5,9 @@ namespace Azure.AI.TextAnalytics.Models { + /// + /// CustomEntitiesTaskParameters class. + /// [CodeGenModel("CustomEntitiesTaskParameters")] - internal partial class CustomEntitiesTaskParameters - { - } + internal partial class CustomEntitiesTaskParameters { } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomMultiClassificationTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomMultiClassificationTaskParameters.cs index 3761cd6ce40b..9582988e1177 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomMultiClassificationTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomMultiClassificationTaskParameters.cs @@ -5,8 +5,9 @@ namespace Azure.AI.TextAnalytics.Models { + /// + /// CustomMultiClassificationTaskParameters. + /// [CodeGenModel("CustomMultiClassificationTaskParameters")] - internal partial class CustomMultiClassificationTaskParameters - { - } + internal partial class CustomMultiClassificationTaskParameters { } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTaskParameters.cs index 2bc036861d69..6422a2482e7b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTaskParameters.cs @@ -5,8 +5,9 @@ namespace Azure.AI.TextAnalytics.Models { + /// + /// CustomSingleClassificationTaskParameters. + /// [CodeGenModel("CustomSingleClassificationTaskParameters")] - internal partial class CustomSingleClassificationTaskParameters - { - } + internal partial class CustomSingleClassificationTaskParameters { } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTasksItem.cs new file mode 100644 index 000000000000..bf583a9bf6f6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTasksItem.cs @@ -0,0 +1,13 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + /// + /// CustomSingleClassificationTasksItem. + /// + [CodeGenModel("TasksStateTasksCustomSingleClassificationTasksItem")] + internal partial class CustomSingleClassificationTasksItem { } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs index e85284d42aee..04d0dcc47a04 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs @@ -42,5 +42,10 @@ internal partial class JobManifestTasks /// ExtractiveSummarizationTasks /// public IList ExtractiveSummarizationTasks { get; set; } + + /// + /// CustomSingleClassificationTasks + /// + internal IList CustomSingleClassificationTasks { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyAction.cs new file mode 100644 index 000000000000..268b858e686d --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyAction.cs @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.AI.TextAnalytics +{ + /// + /// Configurations that allow callers to specify details about how to execute + /// a Single Category Classification action on a set of documents. This corresponds + /// to a Single Category Classification task in the Text Analytics service. + /// For example, the target project and deployment names are required + /// for a successful custom classification action. + /// + public class SingleCategoryClassifyAction + { + /// + /// Initializes a new instance of the + /// class which allows callers to specify details about how to execute + /// a Single Category Classification action on a set of documents. + /// Sets the and properties. + /// + /// The target project name used in the Single Category Classification action. + /// The deployment name used in the Single Category Classification action. + public SingleCategoryClassifyAction(string projectName, string deploymentName) + { + DeploymentName = deploymentName; + ProjectName = projectName; + } + + /// + /// Gets the value of the property corresponding to the name of the target project. + /// + public string ProjectName { get; } + + /// + /// Gets the value of the property corresponding to the name of the target deployment. + /// + public string DeploymentName { get; } + + /// + /// The default value of this property is 'false'. This means, Text Analytics service logs your input text for 48 hours, + /// solely to allow for troubleshooting issues. + /// Setting this property to true, disables input logging and may limit our ability to investigate issues that occur. + /// + /// Please see Cognitive Services Compliance and Privacy notes at for additional details, + /// and Microsoft Responsible AI principles at . + /// + /// + public bool? DisableServiceLogs { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyActionResult.cs new file mode 100644 index 000000000000..ccce17ef8651 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyActionResult.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// + /// The result of the execution of a on the input documents. + /// + public class SingleCategoryClassifyActionResult : TextAnalyticsActionResult + { + private readonly SingleCategoryClassifyResultCollection _documentsResults; + + /// + /// Successful action. + /// + internal SingleCategoryClassifyActionResult(SingleCategoryClassifyResultCollection result, DateTimeOffset completedOn) + : base(completedOn) + { + _documentsResults = result; + } + + /// + /// Action with an error. + /// + internal SingleCategoryClassifyActionResult(DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(completedOn, error) { } + + /// + /// Gets the result of the execution of a per each input document. + /// + public SingleCategoryClassifyResultCollection DocumentsResults + { + get + { + if (HasError) + { +#pragma warning disable CA1065 // Do not raise exceptions in unexpected locations + throw new InvalidOperationException($"Cannot access the results of this action, due to error {Error.ErrorCode}: {Error.Message}"); +#pragma warning restore CA1065 // Do not raise exceptions in unexpected locations + } + return _documentsResults; + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyResult.cs new file mode 100644 index 000000000000..9be060734bcc --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyResult.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; + +namespace Azure.AI.TextAnalytics +{ + /// + /// The result of the Single Category Classification operation on a document, + /// containing the object predicted + /// for that document. + /// + public class SingleCategoryClassifyResult : TextAnalyticsResult + { + private readonly ClassificationCategory _classificationCategory; + internal SingleCategoryClassifyResult(string id, TextDocumentStatistics statistics, ClassificationCategory classificationCategory , IReadOnlyCollection warnings) + : base(id, statistics) + { + _classificationCategory = classificationCategory; + Warnings = warnings; + } + + internal SingleCategoryClassifyResult(string id, TextAnalyticsError error) : base(id, error) { } + + /// + /// Warnings encountered while processing the document. + /// + public IReadOnlyCollection Warnings { get; } + + /// + /// Gets the object predicted for the corresponding document. + /// + public ClassificationCategory ClassificationCategory + { + get + { + if (HasError) + { + throw new InvalidOperationException($"Cannot access result for document {Id}, due to error {Error.ErrorCode}: {Error.Message}"); + } + return _classificationCategory; + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyResultCollection.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyResultCollection.cs new file mode 100644 index 000000000000..85a57ce2b9fc --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyResultCollection.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Diagnostics; +using System.Linq; + +namespace Azure.AI.TextAnalytics +{ + /// + /// Collection of objects corresponding + /// to a batch of documents, and information about the batch operation. + /// + [DebuggerTypeProxy(typeof(SingleCategoryClassifyResultCollectionDebugView))] + public class SingleCategoryClassifyResultCollection : ReadOnlyCollection + { + internal SingleCategoryClassifyResultCollection(IList list, TextDocumentBatchStatistics statistics, + string projectName, string deploymentName) : base(list) + { + Statistics = statistics; + ProjectName = projectName; + DeploymentName = deploymentName; + } + + /// + /// Gets statistics about the documents 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 value of the property corresponding to the name of the + /// target project that produced these results. This should be the same + /// as the project name set when creating the + /// object used to start the operation. + /// + public string ProjectName { get; } + + /// + /// Gets the value of the property corresponding to the deployment name + /// of the project that produced these results. This should be the same + /// as the deployment name set when creating the + /// object used to start the operation. + /// + public string DeploymentName { get; } + + /// + /// Debugger Proxy class for . + /// + internal class SingleCategoryClassifyResultCollectionDebugView + { + private SingleCategoryClassifyResultCollection BaseCollection { get; } + + public SingleCategoryClassifyResultCollectionDebugView(SingleCategoryClassifyResultCollection collection) + { + BaseCollection = collection; + } + + [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] + public List Items + { + get + { + return BaseCollection.ToList(); + } + } + + public TextDocumentBatchStatistics Statistics + { + get + { + return BaseCollection.Statistics; + } + } + + public string ProjectName + { + get + { + return BaseCollection.ProjectName; + } + } + + public string DeploymentName + { + get + { + return BaseCollection.DeploymentName; + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs index 7b0eb87778e3..873564b79eed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs @@ -57,8 +57,17 @@ public TextAnalyticsActions() /// Note that currently only one is supported. /// /// - /// This property only applies for and up. + /// This property only applies for and up. /// public IReadOnlyCollection ExtractSummaryActions { get; set; } + + /// + /// The set of that will get executed on the input documents. + /// Note that currently only one is supported. + /// + /// + /// This property only applies for and up. + /// + public IReadOnlyCollection SingleCategoryClassifyActions { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 4cd50b4fd4f6..243290efdae4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2474,6 +2474,10 @@ private static JobManifestTasks CreateTasks(TextAnalyticsActions actions) { tasks.ExtractiveSummarizationTasks = Transforms.ConvertFromExtractSummaryActionsToTasks(actions.ExtractSummaryActions); } + if (actions.SingleCategoryClassifyActions != null) + { + tasks.CustomSingleClassificationTasks = Transforms.ConvertFromSingleCategoryClassifyActionsToTasks(actions.SingleCategoryClassifyActions); + } return tasks; } @@ -2484,7 +2488,8 @@ private static void ValidateActions(TextAnalyticsActions actions) actions.RecognizeLinkedEntitiesActions?.Count > 1 || actions.ExtractKeyPhrasesActions?.Count > 1 || actions.AnalyzeSentimentActions?.Count > 1 || - actions.ExtractSummaryActions?.Count > 1) + actions.ExtractSummaryActions?.Count > 1 || + actions.SingleCategoryClassifyActions?.Count > 1) { throw new ArgumentException("Multiple of the same action is not currently supported."); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClientOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClientOptions.cs index a8e140b3e661..aea6ef3d4f0a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClientOptions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClientOptions.cs @@ -16,7 +16,7 @@ public class TextAnalyticsClientOptions : ClientOptions /// /// The latest service version supported by this client library. /// - internal const ServiceVersion LatestVersion = ServiceVersion.V3_2_Preview_1; + internal const ServiceVersion LatestVersion = ServiceVersion.V3_2_Preview_2; /// /// The versions of the Text Analytics service supported by this client library. @@ -35,9 +35,9 @@ public enum ServiceVersion V3_1 = 2, /// - /// Version 3.2-preview.1 + /// Version 3.2-preview.2 /// - V3_2_Preview_1 = 3 + V3_2_Preview_2 = 3 #pragma warning restore CA1707 // Identifiers should not contain underscores } @@ -80,7 +80,7 @@ internal static string GetVersionString(ServiceVersion version) { ServiceVersion.V3_0 => "v3.0", ServiceVersion.V3_1 => "v3.1", - ServiceVersion.V3_2_Preview_1 => "v3.2-preview.1", + ServiceVersion.V3_2_Preview_2 => "v3.2-preview.2", _ => throw new ArgumentException($"Version {version} not supported."), }; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsModelFactory.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsModelFactory.cs index cc15fce11b56..f698cca0344d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsModelFactory.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsModelFactory.cs @@ -518,6 +518,55 @@ public static SummarySentenceCollection SummarySentenceCollection(IEnumerable + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the of . + /// Sets the collection of . + /// A new instance of for mocking purposes. + public static SingleCategoryClassifyResult SingleCategoryClassifyResult(string id, TextDocumentStatistics statistics, ClassificationCategory classificationCategory, IEnumerable warnings = default) + { + return new SingleCategoryClassifyResult(id, statistics, classificationCategory, warnings.ToList()); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static SingleCategoryClassifyResult SingleCategoryClassifyResult(string id, TextAnalyticsError error) + { + return new SingleCategoryClassifyResult(id, error); + } + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the collection of . + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static SingleCategoryClassifyResultCollection SingleCategoryClassifyResultCollection(IEnumerable classificationResultList, TextDocumentBatchStatistics statistics, string projectName, string deploymentName) + { + return new SingleCategoryClassifyResultCollection(classificationResultList.ToList(), statistics, projectName, deploymentName); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static ClassificationCategory ClassificationCategory(string category, double confidenceScore) + { + return new ClassificationCategory(new ClassificationResult(category, confidenceScore)); + } + #endregion + #region Linked Entities /// /// Initializes a new instance of for mocking purposes. @@ -676,7 +725,8 @@ public static AnalyzeActionsResult AnalyzeActionsResult( recognizePiiEntitiesActionResults.ToList(), recognizeLinkedEntitiesActionsResults.ToList(), analyzeSentimentActionsResults.ToList(), - new List()); + new List(), + new List()); } /// @@ -688,6 +738,7 @@ public static AnalyzeActionsResult AnalyzeActionsResult( /// Sets the collection of . /// Sets the collection of . /// Sets the collection of . + /// Sets the collection of . /// A new instance of for mocking purposes. public static AnalyzeActionsResult AnalyzeActionsResult( IEnumerable extractKeyPhrasesActionResults, @@ -695,7 +746,9 @@ public static AnalyzeActionsResult AnalyzeActionsResult( IEnumerable recognizePiiEntitiesActionResults, IEnumerable recognizeLinkedEntitiesActionResults, IEnumerable analyzeSentimentActionResults, - IEnumerable extractSummaryActionResults) + IEnumerable extractSummaryActionResults, + IEnumerable singleCategoryClassifyActionResults + ) { return new AnalyzeActionsResult( extractKeyPhrasesActionResults.ToList(), @@ -703,7 +756,8 @@ public static AnalyzeActionsResult AnalyzeActionsResult( recognizePiiEntitiesActionResults.ToList(), recognizeLinkedEntitiesActionResults.ToList(), analyzeSentimentActionResults.ToList(), - extractSummaryActionResults.ToList()); + extractSummaryActionResults.ToList(), + singleCategoryClassifyActionResults.ToList()); } /// @@ -762,6 +816,33 @@ public static ExtractSummaryActionResult ExtractSummaryActionResult( return new ExtractSummaryActionResult(completedOn, new TextAnalyticsErrorInternal(code, message)); } + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult( + SingleCategoryClassifyResultCollection result, + DateTimeOffset completedOn) + { + return new SingleCategoryClassifyActionResult(result, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult( + DateTimeOffset completedOn, + string code, + string message) + { + return new SingleCategoryClassifyActionResult(completedOn, new TextAnalyticsErrorInternal(code, message)); + } /// /// Initializes a new instance of for mocking purposes. /// diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index 8585d697a0e1..0bca2de36643 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -351,6 +351,29 @@ internal static ExtractSummaryResultCollection ConvertToExtractSummaryResultColl #endregion + #region SingleCategoryClassifyResult + internal static SingleCategoryClassifyResultCollection ConvertToSingleCategoryClassifyResultCollection(CustomSingleClassificationResult results, IDictionary idToIndexMap) + { + var classifiedCustomCategoryResults = new List(); + + //Read errors + foreach (DocumentError error in results.Errors) + { + classifiedCustomCategoryResults.Add(new SingleCategoryClassifyResult(error.Id, ConvertToError(error.Error))); + } + + //Read classifications + foreach (SingleClassificationDocument classificationDocument in results.Documents) + { + classifiedCustomCategoryResults.Add(new SingleCategoryClassifyResult(classificationDocument.Id, classificationDocument.Statistics ?? default, new ClassificationCategory(classificationDocument), ConvertToWarnings(classificationDocument.Warnings))); + } + + classifiedCustomCategoryResults = SortHeterogeneousCollection(classifiedCustomCategoryResults, idToIndexMap); + + return new SingleCategoryClassifyResultCollection(classifiedCustomCategoryResults, results.Statistics, results.ProjectName, results.DeploymentName); + } + #endregion + #region Analyze Operation internal static PiiTask ConvertToPiiTask(RecognizePiiEntitiesAction action) @@ -440,6 +463,16 @@ internal static ExtractiveSummarizationTask ConvertToExtractiveSummarizationTask } }; } + internal static CustomSingleClassificationTask ConvertToCustomSingleClassificationTask(SingleCategoryClassifyAction action) + { + return new CustomSingleClassificationTask() + { + Parameters = new CustomSingleClassificationTaskParameters(action.ProjectName, action.DeploymentName) + { + LoggingOptOut = action.DisableServiceLogs, + } + }; + } internal static IList ConvertFromRecognizeLinkedEntitiesActionsToTasks(IReadOnlyCollection recognizeLinkedEntitiesActions) { @@ -513,13 +546,25 @@ internal static IList ConvertFromExtractSummaryActi return list; } + internal static IList ConvertFromSingleCategoryClassifyActionsToTasks(IReadOnlyCollection singleCategoryClassifyActions) + { + List list = new List(); + + foreach (SingleCategoryClassifyAction action in singleCategoryClassifyActions) + { + list.Add(ConvertToCustomSingleClassificationTask(action)); + } + + return list; + } + private static string[] parseActionErrorTarget(string targetReference) { if (string.IsNullOrEmpty(targetReference)) { throw new InvalidOperationException("Expected an error with a target field referencing an action but did not get one"); } - Regex _targetRegex = new Regex("#/tasks/(keyPhraseExtractionTasks|entityRecognitionPiiTasks|entityRecognitionTasks|entityLinkingTasks|sentimentAnalysisTasks|extractiveSummarizationTasks)/(\\d+)", RegexOptions.Compiled, TimeSpan.FromSeconds(2)); + Regex _targetRegex = new Regex("#/tasks/(keyPhraseExtractionTasks|entityRecognitionPiiTasks|entityRecognitionTasks|entityLinkingTasks|sentimentAnalysisTasks|extractiveSummarizationTasks|customSingleClassificationTasks)/(\\d+)", RegexOptions.Compiled, TimeSpan.FromSeconds(2)); // action could be failed and the target reference is "#/tasks/keyPhraseExtractionTasks/0"; Match targetMatch = _targetRegex.Match(targetReference); @@ -542,6 +587,7 @@ internal static AnalyzeActionsResult ConvertToAnalyzeActionsResult(AnalyzeJobSta IDictionary entitiesLinkingRecognitionErrors = new Dictionary(); IDictionary analyzeSentimentErrors = new Dictionary(); IDictionary extractSummaryErrors = new Dictionary(); + IDictionary singleCategoryClassifyErrors = new Dictionary(); if (jobState.Errors.Any()) { @@ -578,6 +624,10 @@ internal static AnalyzeActionsResult ConvertToAnalyzeActionsResult(AnalyzeJobSta { extractSummaryErrors.Add(taskIndex, error); } + else if ("customSingleClassificationTasks".Equals(taskName)) + { + singleCategoryClassifyErrors.Add(taskIndex, error); + } else { throw new InvalidOperationException($"Invalid task name in target reference - {taskName}. \n Additional information: Error code: {error.Code} Error message: {error.Message}"); @@ -591,7 +641,30 @@ internal static AnalyzeActionsResult ConvertToAnalyzeActionsResult(AnalyzeJobSta ConvertToRecognizePiiEntitiesActionsResults(jobState, map, entitiesPiiRecognitionErrors), ConvertToRecognizeLinkedEntitiesActionsResults(jobState, map, entitiesLinkingRecognitionErrors), ConvertToAnalyzeSentimentActionsResults(jobState, map, analyzeSentimentErrors), - ConvertToExtractSummaryActionsResults(jobState, map, extractSummaryErrors)); + ConvertToExtractSummaryActionsResults(jobState, map, extractSummaryErrors), + ConvertToSingleCategoryClassifyResults(jobState, map, singleCategoryClassifyErrors)); + } + + private static IReadOnlyCollection ConvertToSingleCategoryClassifyResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) + { + var collection = new List(); + int index = 0; + foreach (CustomSingleClassificationTasksItem task in jobState.Tasks.CustomSingleClassificationTasks) + { + tasksErrors.TryGetValue(index, out TextAnalyticsErrorInternal taskError); + + if (taskError != null) + { + collection.Add(new SingleCategoryClassifyActionResult(task.LastUpdateDateTime, taskError)); + } + else + { + collection.Add(new SingleCategoryClassifyActionResult(ConvertToSingleCategoryClassifyResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime)); + } + index++; + } + + return collection; } private static IReadOnlyCollection ConvertToAnalyzeSentimentActionsResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md index c1b690b5a763..cc6c43944e73 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://raw.githubusercontent.com/Azure/azure-rest-api-specs/d89b288853959fde45622730995d5c403f332164/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.2-preview.2/TextAnalytics.json + - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/71c9d235dab9206194691d083f0248c8613e2e17/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.2-preview.2/TextAnalytics.json ``` ### Make generated models internal by default diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs index 7ed226fd9de9..8f50e33d4277 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs @@ -19,6 +19,8 @@ public class AnalyzeOperationMockTests : ClientTestBase { private static readonly string s_endpoint = "https://contoso-textanalytics.cognitiveservices.azure.com/"; private static readonly string s_apiKey = "FakeapiKey"; + private static readonly string FakeProjectName = "FakeProjectName"; + private static readonly string FakeDeploymentName = "FakeDeploymentName"; public AnalyzeOperationMockTests(bool isAsync) : base(isAsync) { @@ -774,6 +776,72 @@ public void AnalyzeOperationExtractSummaryWithTwoActions() #endregion Extract summary + #region Single Category Classify + + [Test] + public async Task AnalyzeOperationSingleCategoryClassifyWithDisableServiceLogs() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var actions = new SingleCategoryClassifyAction(FakeProjectName, FakeDeploymentName) + { + DisableServiceLogs = true + }; + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + string logging = contentString.Substring(contentString.IndexOf("loggingOptOut"), 19); + + var expectedContent = "loggingOptOut\":true"; + Assert.AreEqual(expectedContent, logging); + } + + [Test] + public void AnalyzeOperationSingleCategoryClassifyWithTwoActions() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + TextAnalyticsActions batchActions = new() + { + SingleCategoryClassifyActions = new List() + { + new SingleCategoryClassifyAction(FakeProjectName, FakeDeploymentName), + new SingleCategoryClassifyAction(FakeProjectName, FakeDeploymentName) + { + DisableServiceLogs = true + } + }, + }; + + ArgumentException ex = Assert.ThrowsAsync(async () => await client.StartAnalyzeActionsAsync(documents, batchActions)); + Assert.AreEqual("Multiple of the same action is not currently supported.", ex.Message); + } + #endregion + [Test] public async Task AnalyzeOperationWithActionsError() { @@ -815,6 +883,11 @@ public async Task AnalyzeOperationWithActionsError() ""code"": ""InvalidRequest"", ""message"": ""Some error"", ""target"": ""#/tasks/extractiveSummarizationTasks/0"" + }, + { + ""code"": ""InvalidRequest"", + ""message"": ""Some error"", + ""target"": ""#/tasks/customSingleClassificationTasks/0"" } ], ""tasks"": { @@ -823,9 +896,9 @@ public async Task AnalyzeOperationWithActionsError() ""lastUpdateDateTime"": ""2021-03-03T22:39:37Z"" }, ""completed"": 0, - ""failed"": 6, + ""failed"": 7, ""inProgress"": 0, - ""total"": 6, + ""total"": 7, ""entityRecognitionTasks"": [ { ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", @@ -867,6 +940,13 @@ public async Task AnalyzeOperationWithActionsError() ""taskName"": ""something"", ""state"": ""failed"" } + ], + ""customSingleClassificationTasks"": [ + { + ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", + ""taskName"": ""something"", + ""state"": ""failed"" + } ] } }")); @@ -890,16 +970,17 @@ public async Task AnalyzeOperationWithActionsError() RecognizeLinkedEntitiesActions = new List() { new RecognizeLinkedEntitiesAction() }, AnalyzeSentimentActions = new List() { new AnalyzeSentimentAction() }, ExtractSummaryActions = new List() { new ExtractSummaryAction() }, + SingleCategoryClassifyActions = new List { new SingleCategoryClassifyAction(FakeProjectName, FakeDeploymentName)}, DisplayName = "AnalyzeOperationBatchWithErrorTest" }; var operation = new AnalyzeActionsOperation("75d521bc-c2aa-4d8a-aabe-713e72d53a2d", client); await operation.UpdateStatusAsync(); - Assert.AreEqual(6, operation.ActionsFailed); + Assert.AreEqual(7, operation.ActionsFailed); Assert.AreEqual(0, operation.ActionsSucceeded); Assert.AreEqual(0, operation.ActionsInProgress); - Assert.AreEqual(6, operation.ActionsTotal); + Assert.AreEqual(7, operation.ActionsTotal); //Take the first page AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); @@ -910,6 +991,7 @@ public async Task AnalyzeOperationWithActionsError() RecognizeLinkedEntitiesActionResult entityLinkingActionsResults = resultCollection.RecognizeLinkedEntitiesResults.FirstOrDefault(); AnalyzeSentimentActionResult analyzeSentimentActionsResults = resultCollection.AnalyzeSentimentResults.FirstOrDefault(); ExtractSummaryActionResult extractSummaryActionsResults = resultCollection.ExtractSummaryResults.FirstOrDefault(); + SingleCategoryClassifyActionResult singleCategoryClassifyActionResult = resultCollection.SingleCategoryClassifyResults.FirstOrDefault(); Assert.IsTrue(entitiesActionsResults.HasError); Assert.Throws(() => entitiesActionsResults.DocumentsResults.GetType()); @@ -928,6 +1010,9 @@ public async Task AnalyzeOperationWithActionsError() Assert.IsTrue(extractSummaryActionsResults.HasError); Assert.Throws(() => extractSummaryActionsResults.DocumentsResults.GetType()); + + Assert.IsTrue(singleCategoryClassifyActionResult.HasError); + Assert.Throws(() => singleCategoryClassifyActionResult.DocumentsResults.GetType()); } [Test] diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs index d04854425aaa..39c7a721e43d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs @@ -10,7 +10,7 @@ namespace Azure.AI.TextAnalytics.Tests { - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_2)] public class AnalyzeOperationTests : TextAnalyticsClientLiveTestBase { public AnalyzeOperationTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersion serviceVersion) @@ -60,6 +60,7 @@ public async Task AnalyzeOperationWithAADTest() } [RecordedTest] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_2)] public async Task AnalyzeOperationTest() { TextAnalyticsClient client = GetClient(); @@ -82,6 +83,7 @@ public async Task AnalyzeOperationTest() IReadOnlyCollection entityLinkingActionsResults = resultCollection.RecognizeLinkedEntitiesResults; IReadOnlyCollection analyzeSentimentActionsResults = resultCollection.AnalyzeSentimentResults; IReadOnlyCollection extractSummaryActionsResults = resultCollection.ExtractSummaryResults; + IReadOnlyCollection singleCategoryClassifyResults = resultCollection.SingleCategoryClassifyResults; Assert.IsNotNull(keyPhrasesActionsResults); Assert.IsNotNull(entitiesActionsResults); @@ -89,6 +91,7 @@ public async Task AnalyzeOperationTest() Assert.IsNotNull(entityLinkingActionsResults); Assert.IsNotNull(analyzeSentimentActionsResults); Assert.IsNotNull(extractSummaryActionsResults); + Assert.IsNotNull(singleCategoryClassifyResults); var keyPhrasesListId1 = new List { "CEO", "SpaceX", "Elon Musk", "Tesla" }; var keyPhrasesListId2 = new List { "Tesla stock" }; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractSummaryTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractSummaryTests.cs index 2613bf540ad0..927419b5c510 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractSummaryTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractSummaryTests.cs @@ -9,7 +9,7 @@ namespace Azure.AI.TextAnalytics.Tests { - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_1)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_2)] public class ExtractSummaryTests : TextAnalyticsClientLiveTestBase { public ExtractSummaryTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersion serviceVersion) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsClientLiveTestBase.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsClientLiveTestBase.cs index d88da6a49037..edd2401dd6e3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsClientLiveTestBase.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsClientLiveTestBase.cs @@ -9,7 +9,7 @@ namespace Azure.AI.TextAnalytics.Tests [ClientTestFixture( TextAnalyticsClientOptions.ServiceVersion.V3_0, TextAnalyticsClientOptions.ServiceVersion.V3_1, - TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_1)] + TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_2)] public class TextAnalyticsClientLiveTestBase : RecordedTestBase { /// diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsTestEnvironment.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsTestEnvironment.cs index 9199d51847da..11c2ad2b7925 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsTestEnvironment.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsTestEnvironment.cs @@ -9,5 +9,7 @@ public class TextAnalyticsTestEnvironment: TestEnvironment { public string Endpoint => GetRecordedVariable("TEXT_ANALYTICS_ENDPOINT"); public string ApiKey => GetRecordedVariable("TEXT_ANALYTICS_API_KEY", options => options.IsSecret()); + public string SingleClassificationProjectName = "659c1851-be0b-4142-b12a-087da9785926"; + public string SingleClassificationDeploymentName = "659c1851-be0b-4142-b12a-087da9785926"; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogs.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogs.json index 37e92982c2cb..f9a3f7d021da 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogs.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogs.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "657", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7678b6ad1dba4349b35e710b0719046d-fb4e1a942b3b8d41-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-26318d95f2deea42b47860d1b6b8f84f-8ecd4fe02af5564d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "782379accaf823684ab3ddba1b6d3561", "x-ms-return-client-request-id": "true" }, @@ -72,43 +72,43 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "49c63c43-f7b2-4ccf-a3d0-657ba2c53bc0", - "Date": "Fri, 06 Aug 2021 01:40:41 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "apim-request-id": "577326d8-f2ab-4ec3-bdf0-7260fc13071b", + "Date": "Thu, 23 Sep 2021 14:41:58 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1012" + "x-envoy-upstream-service-time": "785" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31203c82b3d5318a200c000c98fad128", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a471e17-22c7-4469-af5a-54e89f0e1949", + "apim-request-id": "44bbc66f-34f2-4b66-b6d9-513e390aa80c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:41 GMT", + "Date": "Thu, 23 Sep 2021 14:41: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": "118" }, "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:42Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "notStarted", + "jobId": "04076d3b-729e-42e8-9fef-16f4d7e5c73c", + "lastUpdateDateTime": "2021-09-23T14:41:59Z", + "createdDateTime": "2021-09-23T14:41:57Z", + "expirationDateTime": "2021-09-24T14:41:57Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -120,31 +120,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b23d49428581723bf3cd5f948f9b6f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34e268c6-41c5-43fa-aeae-f0d74172c829", + "apim-request-id": "bd25e248-03d8-45ef-8ddd-e4a75f9fbc7d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:43 GMT", + "Date": "Thu, 23 Sep 2021 14:42:00 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": "15" }, "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:42Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", + "jobId": "04076d3b-729e-42e8-9fef-16f4d7e5c73c", + "lastUpdateDateTime": "2021-09-23T14:41:59Z", + "createdDateTime": "2021-09-23T14:41:57Z", + "expirationDateTime": "2021-09-24T14:41:57Z", "status": "running", "errors": [], "displayName": "NA", @@ -157,31 +157,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "987bba592dc9f935eff158ecca5b8b4f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dbb578f8-87b5-4c30-a046-2e661cc2ddd6", + "apim-request-id": "06b80254-df85-436b-b81e-e4d7dbf71f57", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:44 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:42Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", + "jobId": "04076d3b-729e-42e8-9fef-16f4d7e5c73c", + "lastUpdateDateTime": "2021-09-23T14:41:59Z", + "createdDateTime": "2021-09-23T14:41:57Z", + "expirationDateTime": "2021-09-24T14:41:57Z", "status": "running", "errors": [], "displayName": "NA", @@ -194,31 +194,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4725b4e1aa495a0919087199de91e826", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "050b3eb5-c77e-42e0-9a3c-434a94c1249a", + "apim-request-id": "4549c2af-b261-4efe-996a-9b0dcc602dfd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:45 GMT", + "Date": "Thu, 23 Sep 2021 14:42:02 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": "10" }, "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:42Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", + "jobId": "04076d3b-729e-42e8-9fef-16f4d7e5c73c", + "lastUpdateDateTime": "2021-09-23T14:41:59Z", + "createdDateTime": "2021-09-23T14:41:57Z", + "expirationDateTime": "2021-09-24T14:41:57Z", "status": "running", "errors": [], "displayName": "NA", @@ -231,117 +231,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ddb30f55397e675f9e2a9b66d0364c64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dadddc8a-7cbd-4928-b764-2e237d405a33", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:46 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": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:42Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "941785b06fd3afa7b1217fc0bb9c1a5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6be73715-24d3-45f7-90c8-5ee5ddbbe2d5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:47 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": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:42Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bb973109aea8a8d054bea81f0ea289e2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b7483177-d116-4fa8-92ef-af711f969025", + "apim-request-id": "139a1a71-2581-47d4-aa77-c57b7a454ca2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:48 GMT", + "Date": "Thu, 23 Sep 2021 14:42:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "407" + "x-envoy-upstream-service-time": "229" }, "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", + "jobId": "04076d3b-729e-42e8-9fef-16f4d7e5c73c", + "lastUpdateDateTime": "2021-09-23T14:42:03Z", + "createdDateTime": "2021-09-23T14:41:57Z", + "expirationDateTime": "2021-09-24T14:41:57Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "completed": 2, + "completed": 3, "failed": 0, - "inProgress": 3, + "inProgress": 2, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:42:03.3852926Z", "state": "succeeded", "results": { "documents": [ @@ -416,8 +341,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:02.9092414Z", "state": "succeeded", "results": { "documents": [ @@ -483,48 +407,105 @@ "modelVersion": "2021-01-15" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-09-23T14:42:02.9264793Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 + }, + "offset": 0, + "length": 41, + "text": "Elon Musk is the CEO of SpaceX and Tesla." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 36, + "text": "Tesla stock is up by 400% this year." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "58e80dbb5479e65268032b5cb99fab01", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "941785b06fd3afa7b1217fc0bb9c1a5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19d41008-7955-415c-bf40-4c60ec8b4e2e", + "apim-request-id": "c5878215-7299-4ca4-9709-b711010052ae", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:49 GMT", + "Date": "Thu, 23 Sep 2021 14:42:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "207" + "x-envoy-upstream-service-time": "240" }, "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", + "jobId": "04076d3b-729e-42e8-9fef-16f4d7e5c73c", + "lastUpdateDateTime": "2021-09-23T14:42:04Z", + "createdDateTime": "2021-09-23T14:41:57Z", + "expirationDateTime": "2021-09-24T14:41:57Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "completed": 2, + "completed": 3, "failed": 0, - "inProgress": 3, + "inProgress": 2, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:42:03.3852926Z", "state": "succeeded", "results": { "documents": [ @@ -599,8 +580,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:02.9092414Z", "state": "succeeded", "results": { "documents": [ @@ -666,48 +646,105 @@ "modelVersion": "2021-01-15" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-09-23T14:42:02.9264793Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 + }, + "offset": 0, + "length": 41, + "text": "Elon Musk is the CEO of SpaceX and Tesla." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 36, + "text": "Tesla stock is up by 400% this year." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9e5c3d0f919f02bbb46f3f15c787a00e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bb973109aea8a8d054bea81f0ea289e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03d8337b-b8a4-4d3d-9e12-6384d7c8872e", + "apim-request-id": "50b1aa99-8547-49f6-b004-71e3c04b14aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:50 GMT", + "Date": "Thu, 23 Sep 2021 14:42:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "258" + "x-envoy-upstream-service-time": "376" }, "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", + "jobId": "04076d3b-729e-42e8-9fef-16f4d7e5c73c", + "lastUpdateDateTime": "2021-09-23T14:42:05Z", + "createdDateTime": "2021-09-23T14:41:57Z", + "expirationDateTime": "2021-09-24T14:41:57Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "completed": 2, + "completed": 4, "failed": 0, - "inProgress": 3, + "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:42:03.3852926Z", "state": "succeeded", "results": { "documents": [ @@ -780,2951 +817,84 @@ } } ], - "entityRecognitionPiiTasks": [ + "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:05.1246774Z", "state": "succeeded", "results": { "documents": [ { - "redactedText": "********* is the *** of ****** and *****.", "id": "0", "entities": [ { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 + "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", + "name": "Elon Musk", + "matches": [ + { + "text": "Elon Musk", + "offset": 0, + "length": 9, + "confidenceScore": 0.94 + } + ], + "language": "en", + "id": "Elon Musk", + "url": "https://en.wikipedia.org/wiki/Elon_Musk", + "dataSource": "Wikipedia" }, { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 + "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", + "name": "SpaceX", + "matches": [ + { + "text": "SpaceX", + "offset": 24, + "length": 6, + "confidenceScore": 0.63 + } + ], + "language": "en", + "id": "SpaceX", + "url": "https://en.wikipedia.org/wiki/SpaceX", + "dataSource": "Wikipedia" }, { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 + "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", + "name": "Tesla, Inc.", + "matches": [ + { + "text": "Tesla", + "offset": 35, + "length": 5, + "confidenceScore": 0.47 + } + ], + "language": "en", + "id": "Tesla, Inc.", + "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", + "dataSource": "Wikipedia" } ], "warnings": [] }, { - "redactedText": "***** stock is up by 400% *********.", "id": "1", "entities": [ { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ad049d97c1b4b5e4deb153a48373eeb5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fa382ff6-eeff-494e-b974-045fc3488a8b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "144" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d10fa612eb462a4252e6a40a143d1fe0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "70e2ac4f-2b4c-4dbd-acbe-bf2163c0323e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "137" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1cc41c63fe9a4d4d58a7bfee3d177f40", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4b800b70-5386-4f08-8c12-a4e0e7d66c57", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40: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": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "20028a80cf77acc85bd95bce1ddaa0a1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1bb6d08a-2169-4cdb-b2b5-0134cdf9ce22", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "66417292d2af141a58c2789f2b53ec3a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ba197c21-9029-4c80-a1ed-b1c29e2374c4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "182" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8a8a6366fe3b93695318c0c0a27f307e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "74318ffb-258d-4551-9f4d-4bc28831f8c5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "125" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cb5c1e0618d6ad916fedc8b557298007", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "95340ab1-65c4-4c0e-b574-b2cb81c2482a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:40:48Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ba6720ec164f936509ad1396115972d9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "77b8de0a-44c4-4e3a-bc8b-87c2eded6593", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "230" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:00Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "Elon Musk", - "CEO", - "SpaceX", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0d99f99221f64e64d1dc1b4d36b33c2a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cf8012b5-4b34-46ff-9cf7-7a72f3e086c8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "155" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:00Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "Elon Musk", - "CEO", - "SpaceX", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "81d3b9977518ef2eb8c8c22805fa9b15", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d744d833-925a-4280-afef-11d1e197d620", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "260" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:00Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "Elon Musk", - "CEO", - "SpaceX", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5d23ee7b7390cb11bb18e873fb185d55", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "611950e4-4c22-467b-9458-3d648ce030b3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:00Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "Elon Musk", - "CEO", - "SpaceX", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "58fee871f0861cc1caa9542d5f3c49d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c42709c2-4596-4a87-b566-12bb629edc0f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "187" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:00Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "Elon Musk", - "CEO", - "SpaceX", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "47d20640de90239aa708c6ff8dbbf4a0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6814be06-2614-4766-8ba2-4ba35c7d9f09", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "316" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:00Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "Elon Musk", - "CEO", - "SpaceX", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1cb76c6b43fc8b8f2d0793e71fe36c7f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1341b4be-1c29-42f3-8e43-c1afb7b2c710", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "160" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:00Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "Elon Musk", - "CEO", - "SpaceX", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f43211cf164692c54edab07d2ac18e0f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f88ccf9e-dee6-46b3-8a36-f857b57cec1c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "356" - }, - "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:00Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 + "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", + "name": "Tesla, Inc.", + "matches": [ + { + "text": "Tesla", + "offset": 0, + "length": 5, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Tesla, Inc.", + "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", + "dataSource": "Wikipedia" } ], "warnings": [] @@ -3737,8 +907,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:02.9092414Z", "state": "succeeded", "results": { "documents": [ @@ -3805,33 +974,61 @@ } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:02.9264793Z", "state": "succeeded", "results": { "documents": [ { "id": "0", - "keyPhrases": [ - "Elon Musk", - "CEO", - "SpaceX", - "Tesla" + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 + }, + "offset": 0, + "length": 41, + "text": "Elon Musk is the CEO of SpaceX and Tesla." + } ], "warnings": [] }, { "id": "1", - "keyPhrases": [ - "Tesla stock" + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 36, + "text": "Tesla stock is up by 400% this year." + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -3839,43 +1036,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f2c2b3b42d85fddb76471a894ab204c4", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "58e80dbb5479e65268032b5cb99fab01", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a38ff0e-f533-46a0-a22c-a0275de24dad", + "apim-request-id": "8846e222-8635-4ad6-b47f-9d055f3ca94e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:11 GMT", + "Date": "Thu, 23 Sep 2021 14:42:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "206" + "x-envoy-upstream-service-time": "276" }, "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:00Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", + "jobId": "04076d3b-729e-42e8-9fef-16f4d7e5c73c", + "lastUpdateDateTime": "2021-09-23T14:42:05Z", + "createdDateTime": "2021-09-23T14:41:57Z", + "expirationDateTime": "2021-09-24T14:41:57Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:42:03.3852926Z", "state": "succeeded", "results": { "documents": [ @@ -3948,10 +1144,97 @@ } } ], + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-09-23T14:42:05.1246774Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", + "name": "Elon Musk", + "matches": [ + { + "text": "Elon Musk", + "offset": 0, + "length": 9, + "confidenceScore": 0.94 + } + ], + "language": "en", + "id": "Elon Musk", + "url": "https://en.wikipedia.org/wiki/Elon_Musk", + "dataSource": "Wikipedia" + }, + { + "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", + "name": "SpaceX", + "matches": [ + { + "text": "SpaceX", + "offset": 24, + "length": 6, + "confidenceScore": 0.63 + } + ], + "language": "en", + "id": "SpaceX", + "url": "https://en.wikipedia.org/wiki/SpaceX", + "dataSource": "Wikipedia" + }, + { + "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", + "name": "Tesla, Inc.", + "matches": [ + { + "text": "Tesla", + "offset": 35, + "length": 5, + "confidenceScore": 0.47 + } + ], + "language": "en", + "id": "Tesla, Inc.", + "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", + "name": "Tesla, Inc.", + "matches": [ + { + "text": "Tesla", + "offset": 0, + "length": 5, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Tesla, Inc.", + "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:02.9092414Z", "state": "succeeded", "results": { "documents": [ @@ -4018,33 +1301,61 @@ } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:02.9264793Z", "state": "succeeded", "results": { "documents": [ { "id": "0", - "keyPhrases": [ - "Elon Musk", - "CEO", - "SpaceX", - "Tesla" + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 + }, + "offset": 0, + "length": 41, + "text": "Elon Musk is the CEO of SpaceX and Tesla." + } ], "warnings": [] }, { "id": "1", - "keyPhrases": [ - "Tesla stock" + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.0, + "neutral": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 36, + "text": "Tesla stock is up by 400% this year." + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -4052,31 +1363,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/04076d3b-729e-42e8-9fef-16f4d7e5c73c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7c30469bff88555aa724cd219211606b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9e5c3d0f919f02bbb46f3f15c787a00e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4515d3fe-e6df-4402-90a5-eb43c8519b28", + "apim-request-id": "493b5555-1502-49f6-888b-01d0591bf3c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:12 GMT", + "Date": "Thu, 23 Sep 2021 14:42:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "295" + "x-envoy-upstream-service-time": "354" }, "ResponseBody": { - "jobId": "6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", - "lastUpdateDateTime": "2021-08-06T01:41:12Z", - "createdDateTime": "2021-08-06T01:40:41Z", - "expirationDateTime": "2021-08-07T01:40:41Z", + "jobId": "04076d3b-729e-42e8-9fef-16f4d7e5c73c", + "lastUpdateDateTime": "2021-09-23T14:42:08Z", + "createdDateTime": "2021-09-23T14:41:57Z", + "expirationDateTime": "2021-09-24T14:41:57Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -4087,8 +1398,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:42:03.3852926Z", "state": "succeeded", "results": { "documents": [ @@ -4163,8 +1473,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:12.2905091Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:42:05.1246774Z", "state": "succeeded", "results": { "documents": [ @@ -4252,8 +1561,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:02.9092414Z", "state": "succeeded", "results": { "documents": [ @@ -4322,8 +1630,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:08.1113957Z", "state": "succeeded", "results": { "documents": [ @@ -4352,8 +1659,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:11.8663011Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:42:02.9264793Z", "state": "succeeded", "results": { "documents": [ @@ -4416,6 +1722,6 @@ "Variables": { "RandomSeed": "1881715126", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogsAsync.json index f15352a664ef..4d733f6e9ea7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogsAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogsAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "657", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a92020411442264cbe36db633b8c0758-3ea65dca9a871c4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-8051d00686edf04bbc5ed3e11a79b945-6bf07fe90283a040-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cab6db40209658f86d8910a806e31bf5", "x-ms-return-client-request-id": "true" }, @@ -72,42 +72,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "120111c2-d1af-4dd6-992a-50303be98c8f", - "Date": "Fri, 06 Aug 2021 01:45:08 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "apim-request-id": "7179f2fb-8e7d-4f5b-b10b-e9ee22c5e1f1", + "Date": "Thu, 23 Sep 2021 14:44:12 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a7110920-94cd-4f0d-a156-0c5d55c6c52e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "446" + "x-envoy-upstream-service-time": "521" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a7110920-94cd-4f0d-a156-0c5d55c6c52e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c47d34012245c090a781ad405351b093", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1daf6157-972b-46ee-82a9-352111c9f9a3", + "apim-request-id": "aca649a0-1a4f-4e8d-81b8-e9659a1bbdfe", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:08 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "10" }, "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:09Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", + "jobId": "a7110920-94cd-4f0d-a156-0c5d55c6c52e", + "lastUpdateDateTime": "2021-09-23T14:44:13Z", + "createdDateTime": "2021-09-23T14:44:13Z", + "expirationDateTime": "2021-09-24T14:44:13Z", "status": "running", "errors": [], "displayName": "NA", @@ -120,216 +120,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a7110920-94cd-4f0d-a156-0c5d55c6c52e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a9595244f4c07851c15dba6c4a69457a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c98fdf39-8599-47de-8485-92aa391f4cab", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:09 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": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:10Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d93f0294486e1eee4bf5221573b8041c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1af1d8f1-72a7-4b9b-b5b1-0306e8019ca8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:10 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": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:10Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b3637dd8728a0c34e20502e76723763e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "23b9713c-81be-4cdb-bd83-fe1cfb6919f8", + "apim-request-id": "ed20e71f-47de-4856-9dc5-f523f3c79bce", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:11 GMT", + "Date": "Thu, 23 Sep 2021 14:44:14 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": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:10Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "51ab323bd712fc24633a5ecbd13c0509", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c1f4c81b-8a84-4736-913e-d5adb909fd74", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:12 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": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:10Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cd939e58910622f0ce32f6694507b627", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d97b70cb-4d4e-4c1f-9bc1-f1a871b95374", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:13 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": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:10Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "41d9e47eb30c01095867504f14693aa6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4113195b-8471-48d7-adb6-082baed2cb20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:14 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": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:10Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", + "jobId": "a7110920-94cd-4f0d-a156-0c5d55c6c52e", + "lastUpdateDateTime": "2021-09-23T14:44:14Z", + "createdDateTime": "2021-09-23T14:44:13Z", + "expirationDateTime": "2021-09-24T14:44:13Z", "status": "running", "errors": [], "displayName": "NA", @@ -342,43 +157,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a7110920-94cd-4f0d-a156-0c5d55c6c52e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c98ef900a98fa938418982dfe0bbb65c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d93f0294486e1eee4bf5221573b8041c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "691ca91a-e06e-4261-be14-ec027b792294", + "apim-request-id": "b3debdcf-e0b2-4cc3-bf81-e2e649e7a161", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:16 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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-envoy-upstream-service-time": "157" }, "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", + "jobId": "a7110920-94cd-4f0d-a156-0c5d55c6c52e", + "lastUpdateDateTime": "2021-09-23T14:44:15Z", + "createdDateTime": "2021-09-23T14:44:13Z", + "expirationDateTime": "2021-09-24T14:44:13Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 3, + "inProgress": 4, "total": 5, - "entityRecognitionTasks": [ + "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:44:15.3609686Z", "state": "succeeded", "results": { "documents": [ @@ -386,32 +200,52 @@ "id": "0", "entities": [ { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 + "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", + "name": "Elon Musk", + "matches": [ + { + "text": "Elon Musk", + "offset": 0, + "length": 9, + "confidenceScore": 0.94 + } + ], + "language": "en", + "id": "Elon Musk", + "url": "https://en.wikipedia.org/wiki/Elon_Musk", + "dataSource": "Wikipedia" }, { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 + "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", + "name": "SpaceX", + "matches": [ + { + "text": "SpaceX", + "offset": 24, + "length": 6, + "confidenceScore": 0.63 + } + ], + "language": "en", + "id": "SpaceX", + "url": "https://en.wikipedia.org/wiki/SpaceX", + "dataSource": "Wikipedia" }, { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 + "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", + "name": "Tesla, Inc.", + "matches": [ + { + "text": "Tesla", + "offset": 35, + "length": 5, + "confidenceScore": 0.47 + } + ], + "language": "en", + "id": "Tesla, Inc.", + "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", + "dataSource": "Wikipedia" } ], "warnings": [] @@ -420,27 +254,20 @@ "id": "1", "entities": [ { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 + "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", + "name": "Tesla, Inc.", + "matches": [ + { + "text": "Tesla", + "offset": 0, + "length": 5, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Tesla, Inc.", + "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", + "dataSource": "Wikipedia" } ], "warnings": [] @@ -450,12278 +277,47 @@ "modelVersion": "2021-06-01" } } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ed4c3684c462a5fd9492749f41a10d64", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1b9907b7-6c34-4e78-80a3-32c442096c4d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "171" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4c6850f8ec78d598ac2fff83312a219d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "45f1330b-a0b6-4cd8-b9c7-7de1c729a9a2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "169" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ddcaf4b04d1d3c43fbe934fd3598689f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "27de3cc9-5f2d-47fc-8139-e68f1cadbbd3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "168" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "90e61d7b6a5298e39e764032c4797369", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3b9b0cd2-5658-4bda-aab7-eeee76b765b5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "148" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4ceed6702fd7aa470c2c508fb79aa013", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b62ceba0-3fa7-4cd3-8d83-fa768fde881f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "168" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "130860c79144454b11323fa60d107881", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3c5e2ceb-70d2-4090-8489-1ee3810b9e27", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "164" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5e8ccb751caa4bc8d53c83251953e003", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1961df79-b05b-4868-93b5-4d035cd7ccbf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45: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": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "636b2cd66071df258ba93ba4f0a19dfb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6f13aed6-1fc3-4fc9-856b-46e0625dd040", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "183" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ec19ceb4410eab6998bd3d070e252cbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "06793f83-60b0-4652-92cb-0f2e64a65ad3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "154" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e0d03c5214a51510a5add301e0235a34", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5fcd131d-8089-4446-a82e-4167fb48b43c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "192" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4a71879ef33994f4c3c0cbb3221dd165", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "561508ea-97b4-47d0-98d1-ca07f3ce1467", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "177" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b3527d7dbdd19f56bd0446616e68ca74", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "110a0886-8201-4b89-a6a3-51b7b657392a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "169" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "86690862e1b45e83473b1ce4485df288", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4d17022f-23b1-49f8-9ac6-73e36d8fe517", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "190" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "62836edba7d0e16330d18d35ac93255a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f9552acc-0752-44e7-b7ca-7753510ff1db", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "164" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:16Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "195156f54ab49cb0faf46b95a0725660", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4e662078-cb59-4e40-b636-3c0d4d67ee30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "214" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0085be1267e4bba4a58755e2534eb1b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8e48c283-40ac-4c6f-b03d-bb427e8b4fcc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "261" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f2eec115d80c91d3bde768db3bcd40be", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "de5ce3c8-35b6-4ab3-a343-4a528bf09b22", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "348" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ee222c7b250d8e76b295742cf4ce48ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6563ad1e-6deb-4db3-b4b5-493f1df5ed12", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "227" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "de7fb74264833a54eaf443fcffc87fd7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "21ecfcee-f5bc-4b70-8852-e322c88f5265", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "268" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "27679747c32cf0a64b603f7663a79cee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bc2ca7c4-6348-4b5b-89d1-1a78a3328ccb", - "Connection": "close", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "207" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8498bc9f624e163ad7e80319e2798ee9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e5a5d767-9f1b-47a2-a1df-7c5cf0b8255d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "288" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5de59c1520677f7f108f932324ded643", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3b974b53-2fa2-4ed2-9938-37dee3b81635", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:44 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "229" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "425c5458fb2fe5895c505044bf8d0dd1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "49f463c3-6958-427d-818f-708bb8b4632a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "284" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c76056d13ec17f873d1974bfce17f2f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a2d4a06d-d549-4f45-8f97-e99529d39567", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "207" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8ec1bf114c1d1ab912000017cf3bbf82", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2313573e-4985-4b4e-b377-1f5d065018f6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "239" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cd51c1810e7d1981ccdc041687ca1644", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bc536488-e72c-4271-ba30-d558b8c21e24", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "225" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0032575d7fcc85b49c46b4c13e6fb002", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fd58f36f-ecf3-477f-9234-b6d66eee8127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "249" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0d3ef15924c6027a3da7c14047a39348", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a994d58c-b14b-41fe-ab69-36cdb0fee432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "212" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "77b9bbe9bf0801b60ccc31375abfda5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1f258006-1434-420c-89fc-fc8bd38d3b8e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "227" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "95bc022c088b387edc30c224be743df8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8ced8e08-81cd-4a92-aab3-0f68cb2e4717", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "284" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "82d86cb238b69af93b3c00faf343a87d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a81c4a1a-21d6-47cb-8d48-34c31b7ad634", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "216" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "451364ccfee6e1bc3d819ad8fc914298", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "157bc0f9-fdc6-44eb-8a7a-0a0224438831", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "237" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ed84388f58e7f4a60822594f07844599", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b0187772-abbc-4041-a9e7-11f90e3ebbc2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "205" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5a574587f760b412aff645359d219daa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "557f4c74-a0ef-427f-aa71-b3b68bfcdfc9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "247" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ba6a68f9babe7495bd1f3cc4a46dd9b8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d5488ad4-dbf1-4307-8437-30b8fdd3919f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "256" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b750013be839973726d03ef0127157e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1af09f8d-8817-4e01-8376-8adb1fee851d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "265" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9f55af848b19cddbafe39c41ba4d0f42", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6bb51a7d-cf8c-4375-b151-06fcbe917d96", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "223" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9cf98c1de6d0107030d293ee7ca4614b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f3fea479-1cfd-48d2-8b84-abf1566163d7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "240" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f53f55c83a18af9f268308564cf6ddd8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d72457db-a8b2-4ced-bb2f-f3df010befb4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "209" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "bingId": "ce6414c0-f9f0-b48b-31f9-42a7dab4db59", - "name": "Elon Musk", - "matches": [ - { - "text": "Elon Musk", - "offset": 0, - "length": 9, - "confidenceScore": 0.94 - } - ], - "language": "en", - "id": "Elon Musk", - "url": "https://en.wikipedia.org/wiki/Elon_Musk", - "dataSource": "Wikipedia" - }, - { - "bingId": "627fa43a-d963-2c69-46ae-de521d27f9b9", - "name": "SpaceX", - "matches": [ - { - "text": "SpaceX", - "offset": 24, - "length": 6, - "confidenceScore": 0.63 - } - ], - "language": "en", - "id": "SpaceX", - "url": "https://en.wikipedia.org/wiki/SpaceX", - "dataSource": "Wikipedia" - }, - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 35, - "length": 5, - "confidenceScore": 0.47 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "bingId": "732e1de9-8d5c-15ed-7f0d-7e2169dc9859", - "name": "Tesla, Inc.", - "matches": [ - { - "text": "Tesla", - "offset": 0, - "length": 5, - "confidenceScore": 0.05 - } - ], - "language": "en", - "id": "Tesla, Inc.", - "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 0.99 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.96 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 - } - ], - "warnings": [] - }, - { - "redactedText": "***** stock is up by 400% *********.", - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 41, - "text": "Elon Musk is the CEO of SpaceX and Tesla." - } - ], - "warnings": [] - }, - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.0, - "neutral": 1.0, - "negative": 0.0 - }, - "offset": 0, - "length": 36, - "text": "Tesla stock is up by 400% this year." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a7110920-94cd-4f0d-a156-0c5d55c6c52e", "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "86d3fcc0bb779e173e446e46f8ed510a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a28cf02f-0e82-4dd4-a776-70263a2362ab", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "223" - }, - "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b3637dd8728a0c34e20502e76723763e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "57816457-494e-46d9-ae8e-a045e45cc75c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "219" + }, + "ResponseBody": { + "jobId": "a7110920-94cd-4f0d-a156-0c5d55c6c52e", + "lastUpdateDateTime": "2021-09-23T14:44:17Z", + "createdDateTime": "2021-09-23T14:44:13Z", + "expirationDateTime": "2021-09-24T14:44:13Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:15.3609686Z", "state": "succeeded", "results": { "documents": [ @@ -12809,8 +405,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:16.7146258Z", "state": "succeeded", "results": { "documents": [ @@ -12879,8 +474,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:17.0299484Z", "state": "succeeded", "results": { "documents": [ @@ -12940,119 +534,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a7110920-94cd-4f0d-a156-0c5d55c6c52e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "657951811a0ee229ed4a754cde1ac439", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "51ab323bd712fc24633a5ecbd13c0509", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "712ed841-540c-4779-9e43-598f11e23e37", + "apim-request-id": "1f0f224c-a22e-472b-a41c-6aeaf5524c38", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:09 GMT", + "Date": "Thu, 23 Sep 2021 14:44:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "228" + "x-envoy-upstream-service-time": "206" }, "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", + "jobId": "a7110920-94cd-4f0d-a156-0c5d55c6c52e", + "lastUpdateDateTime": "2021-09-23T14:44:17Z", + "createdDateTime": "2021-09-23T14:44:13Z", + "expirationDateTime": "2021-09-24T14:44:13Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:15.3609686Z", "state": "succeeded", "results": { "documents": [ @@ -13140,8 +657,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:16.7146258Z", "state": "succeeded", "results": { "documents": [ @@ -13210,8 +726,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:17.0299484Z", "state": "succeeded", "results": { "documents": [ @@ -13271,119 +786,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a7110920-94cd-4f0d-a156-0c5d55c6c52e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7f2dbaf5dbd10dd33ea0b7d4cb58b739", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cd939e58910622f0ce32f6694507b627", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca042780-8c25-4215-bf49-b9eb328ba257", + "apim-request-id": "fa52deea-b4a8-4300-a087-920910329b62", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:10 GMT", + "Date": "Thu, 23 Sep 2021 14:44:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "239" + "x-envoy-upstream-service-time": "223" }, "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", + "jobId": "a7110920-94cd-4f0d-a156-0c5d55c6c52e", + "lastUpdateDateTime": "2021-09-23T14:44:19Z", + "createdDateTime": "2021-09-23T14:44:13Z", + "expirationDateTime": "2021-09-24T14:44:13Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:15.3609686Z", "state": "succeeded", "results": { "documents": [ @@ -13471,8 +909,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:16.7146258Z", "state": "succeeded", "results": { "documents": [ @@ -13541,8 +978,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:17.0299484Z", "state": "succeeded", "results": { "documents": [ @@ -13602,119 +1038,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a7110920-94cd-4f0d-a156-0c5d55c6c52e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fad4fd32777da6cad2f0982d45cac024", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "41d9e47eb30c01095867504f14693aa6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee891302-22a7-4d30-a008-19f70b0c3d4b", + "apim-request-id": "35f89be1-4adc-4a96-9097-8fbaa007d857", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:11 GMT", + "Date": "Thu, 23 Sep 2021 14:44:21 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": "215" }, "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:33Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", + "jobId": "a7110920-94cd-4f0d-a156-0c5d55c6c52e", + "lastUpdateDateTime": "2021-09-23T14:44:19Z", + "createdDateTime": "2021-09-23T14:44:13Z", + "expirationDateTime": "2021-09-24T14:44:13Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "text": "Elon Musk", - "category": "Person", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "CEO", - "category": "PersonType", - "offset": 17, - "length": 3, - "confidenceScore": 0.95 - }, - { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.99 - }, - { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.98 - }, - { - "text": "400%", - "category": "Quantity", - "subcategory": "Percentage", - "offset": 21, - "length": 4, - "confidenceScore": 0.8 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:15.3609686Z", "state": "succeeded", "results": { "documents": [ @@ -13802,8 +1161,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:16.7146258Z", "state": "succeeded", "results": { "documents": [ @@ -13872,8 +1230,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:17.0299484Z", "state": "succeeded", "results": { "documents": [ @@ -13933,31 +1290,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a7110920-94cd-4f0d-a156-0c5d55c6c52e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3d50347fd1bfa6387d6c276d62551695", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c98ef900a98fa938418982dfe0bbb65c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a994d78-aa46-4f50-89af-1063fad3e3a3", + "apim-request-id": "42a9dec3-1c16-4615-ae72-56dc24d67d38", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:13 GMT", + "Date": "Thu, 23 Sep 2021 14:44:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "272" + "x-envoy-upstream-service-time": "374" }, "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:46:13Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", + "jobId": "a7110920-94cd-4f0d-a156-0c5d55c6c52e", + "lastUpdateDateTime": "2021-09-23T14:44:22Z", + "createdDateTime": "2021-09-23T14:44:13Z", + "expirationDateTime": "2021-09-24T14:44:13Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -13968,8 +1325,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:44:21.7265143Z", "state": "succeeded", "results": { "documents": [ @@ -14044,8 +1400,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:15.3609686Z", "state": "succeeded", "results": { "documents": [ @@ -14133,8 +1488,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:16.7146258Z", "state": "succeeded", "results": { "documents": [ @@ -14203,8 +1557,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:46:13.4130187Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:44:22.6197564Z", "state": "succeeded", "results": { "documents": [ @@ -14233,8 +1586,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:17.0299484Z", "state": "succeeded", "results": { "documents": [ @@ -14297,6 +1649,6 @@ "Variables": { "RandomSeed": "1499041820", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMining.json index 897bded9e636..8f4337bbc76c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMining.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "304", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-39e5deb97baa7a4ba9356ae52863cc1c-83d52d37d80b4f49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a410475800a59d4ab18dd1d5bb37b168-0edf8a49e8ba3441-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aeed755eebf15dfbf87891ec623be508", "x-ms-return-client-request-id": "true" }, @@ -37,42 +37,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b5690da4-f5cd-4f3a-a029-efb598d47287", - "Date": "Fri, 06 Aug 2021 01:41:13 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "apim-request-id": "0a917f7c-b9df-4d43-8035-a1afc84b3261", + "Date": "Thu, 23 Sep 2021 14:42:09 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6c190067-3de2-4bd4-9132-ae17c1f8e6cb", "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": "218" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6c190067-3de2-4bd4-9132-ae17c1f8e6cb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b89b687077016fde88c409f18dad86de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67bbfb72-2923-49b8-9519-0871a44ef1f3", + "apim-request-id": "bebcf317-5e49-4ece-890a-42f43a8362c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:13 GMT", + "Date": "Thu, 23 Sep 2021 14:42:09 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": { - "jobId": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", + "jobId": "6c190067-3de2-4bd4-9132-ae17c1f8e6cb", + "lastUpdateDateTime": "2021-09-23T14:42:10Z", + "createdDateTime": "2021-09-23T14:42:10Z", + "expirationDateTime": "2021-09-24T14:42:10Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -85,31 +85,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6c190067-3de2-4bd4-9132-ae17c1f8e6cb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cd305befd02867efcaa990c232be4a65", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe989655-ed45-4b05-b728-2e122925dd3b", + "apim-request-id": "4c52a580-5328-4142-894e-659aacae984e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:14 GMT", + "Date": "Thu, 23 Sep 2021 14:42:11 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": "8" }, "ResponseBody": { - "jobId": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", + "jobId": "6c190067-3de2-4bd4-9132-ae17c1f8e6cb", + "lastUpdateDateTime": "2021-09-23T14:42:10Z", + "createdDateTime": "2021-09-23T14:42:10Z", + "expirationDateTime": "2021-09-24T14:42:10Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -122,31 +122,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6c190067-3de2-4bd4-9132-ae17c1f8e6cb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ddc0b88facc4e772977d262ce109cf4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5cbd822e-bc27-47c9-9f02-3d0fafa98166", + "apim-request-id": "892c3cde-36a9-4a96-a7ee-2c666d4efb8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:15 GMT", + "Date": "Thu, 23 Sep 2021 14:42:12 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", + "jobId": "6c190067-3de2-4bd4-9132-ae17c1f8e6cb", + "lastUpdateDateTime": "2021-09-23T14:42:10Z", + "createdDateTime": "2021-09-23T14:42:10Z", + "expirationDateTime": "2021-09-24T14:42:10Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -159,993 +159,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6c190067-3de2-4bd4-9132-ae17c1f8e6cb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "07fdb3f2180b9fe07934ed57e71b3dc9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "206f3b90-fa52-43e7-921c-4721f11bcf1f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:16 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d561a47aa8ed421ae84935aaaac286c1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fdce94cd-58a8-474a-ba46-c6aebab25bbf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01: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" - }, - "ResponseBody": { - "jobId": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7fd045da43c17759d8206490bf1a007b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "29f4a6bd-09fd-4bcb-9a4c-40f7dfa44adf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "jobId": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3db25c40faa8495d99ba1ec2e235f5b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "da285dab-2742-49ad-a033-7cc0e4d8097f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a17d2badbe4b37084aeafccc448982cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9323dba0-c368-4a32-83e6-cc83b2ba2da4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:20 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4e6aba484910e019e786e606249794a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "466b1fd2-5152-41ae-a047-f7cf141ee3c0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "93e2ac2b5e9d8230537bf2bdfd91050f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3019e12d-df42-429f-b2d8-81226e8295cf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:22 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "28795137a7ca64a6129dbac4d80112b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5a891b6e-28c9-42c6-9f05-890dc30d3253", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "97a15955efa6ea3089e8fa95565be256", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "055d7e48-0d9e-48a2-9dd3-34bd63dffcf1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:24 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d2ced6816b1e83d8057e80ffa36baa51", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "71e4c84d-a98f-410a-a5c7-6279caa92f6f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a46840686df04868218e9ee2ac110eb7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a5e93027-ea44-4177-818d-49c52f3fc0e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "014264bb4033e993811d91286e30461d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4281b751-1cdf-4482-983e-34d7e5a11fdb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:27 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "162da83e3ef314656d86b090ccf5d7f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ada90de3-c29b-43fa-ac96-01242f88a4e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3f44c970a829281eac7e22d3db40daf1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c4af8a9e-1bbe-41c8-a0f7-dea6c32acbb2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:29 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "04a48148f7e47dc3fe2e93ac8f031d8b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "365d6cc7-7b70-4e87-bd5f-667e92ecb2e0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a4b89d4607ec95f489056a751b92382d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "08e18ac7-96b0-42f6-9b8c-a882f67ec2fd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:31 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4b47bfacd251780f05c740fb147298a8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d05d1db3-ec05-4a81-aaf1-b3e32b30805d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3e8d9760358740048c0e7adf8d4e616b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "16c42b44-9d79-4273-bd78-75ed79bfac22", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cf0066f5d1bb733a8d409f25c6f98117", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "00eb871d-bbe3-4613-a8a0-e9c49d76aa95", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:35 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8414c16cfa0576a6ba06bf435830ebb6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "07e7bffa-e40e-4467-bfa0-af7339b056a9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ae06d465c8718fec5c1ab04796df7a93", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dffb9656-21f7-4079-a755-64a48db7f266", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "jobId": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cb73628cdd3afa66c08915b412f71a5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2997fd86-ffc4-418a-ae32-c199d56f9b81", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:38 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f1bfe854d3f3a3a6d58427eb495fe0da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "90ceee10-4fe3-4db3-83eb-3c4a0bcddda8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f6b62b8c20bd877c6e0beee7b3377d65", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7f139b75-33f3-407f-a5e2-361fcb0f426e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "aef253ff891fb9a0bccff5b5b67bb061", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4dc05b37-afbe-4c5a-a68b-43f81eee87ca", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:41 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e6283aa9244034a06b3882e7e5beef9d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fee12c0e-93d1-4e6b-824f-36410cccc611", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:42 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f6ebc107326c02ba8bfc39ed2ac7d1f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "27d3602c-1ba1-4b9b-8d9c-e0459f243714", + "apim-request-id": "51f3821a-8430-4859-9a88-a692e062b1b7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:44 GMT", + "Date": "Thu, 23 Sep 2021 14:42:13 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": "61" }, "ResponseBody": { - "jobId": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:43Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", + "jobId": "6c190067-3de2-4bd4-9132-ae17c1f8e6cb", + "lastUpdateDateTime": "2021-09-23T14:42:12Z", + "createdDateTime": "2021-09-23T14:42:10Z", + "expirationDateTime": "2021-09-24T14:42:10Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -1156,8 +194,7 @@ "total": 1, "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:43.7346716Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:42:12.855788Z", "state": "succeeded", "results": { "documents": [ @@ -1301,6 +338,6 @@ "Variables": { "RandomSeed": "1819362252", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMiningAsync.json index c1b824f899da..179b8f48fb4f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMiningAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "304", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5493d4225cfe91439b87807f390b2f26-a6dc99a9ac176d4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-deec0cced9d59d4aad4d55e145e92dda-a6d03855975c5543-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6927c132680ad8649ac90e19e28d853", "x-ms-return-client-request-id": "true" }, @@ -37,42 +37,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "795f5f8b-0724-4f64-b744-24b4ae40710d", - "Date": "Fri, 06 Aug 2021 01:46:13 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "apim-request-id": "469cfeb3-b62f-4111-8ee0-1659835861b2", + "Date": "Thu, 23 Sep 2021 14:44:22 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/35f29916-514a-48d2-a52d-bce89830634f", "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": "163" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/35f29916-514a-48d2-a52d-bce89830634f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "153d4b6951e2c2fd62e262d9e8ed622f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44b030c8-f41b-4733-8bb9-e2e5a03e0c6e", + "apim-request-id": "73301e61-bf54-4af3-9801-c3b9556eca39", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:13 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:14Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "35f29916-514a-48d2-a52d-bce89830634f", + "lastUpdateDateTime": "2021-09-23T14:44:23Z", + "createdDateTime": "2021-09-23T14:44:23Z", + "expirationDateTime": "2021-09-24T14:44:23Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -85,31 +85,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/35f29916-514a-48d2-a52d-bce89830634f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d697313a410adabb5c42bae4e0a8799", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2bcb4910-bbf5-4cde-a106-c1c263dfbcd9", + "apim-request-id": "65abdb08-0894-41cd-8d94-42f651d85b01", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:14 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "8" }, "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "35f29916-514a-48d2-a52d-bce89830634f", + "lastUpdateDateTime": "2021-09-23T14:44:23Z", + "createdDateTime": "2021-09-23T14:44:23Z", + "expirationDateTime": "2021-09-24T14:44:23Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -122,31 +122,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/35f29916-514a-48d2-a52d-bce89830634f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e5bfab8d343c24b7ecf549ec3adc45c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c47b7485-7660-43cd-b12d-68756d3f1b1b", + "apim-request-id": "f18db7e7-28f5-4fc4-8a13-3e1c4492f62c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:15 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "35f29916-514a-48d2-a52d-bce89830634f", + "lastUpdateDateTime": "2021-09-23T14:44:23Z", + "createdDateTime": "2021-09-23T14:44:23Z", + "expirationDateTime": "2021-09-24T14:44:23Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -159,31 +159,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/35f29916-514a-48d2-a52d-bce89830634f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ace604a4bbec5429f90601e254f7357", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5aea9807-b224-413e-b47e-95c3c6b77753", + "apim-request-id": "4293b649-6fa4-4184-94a0-19c8b3591bab", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:16 GMT", + "Date": "Thu, 23 Sep 2021 14:44:26 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "35f29916-514a-48d2-a52d-bce89830634f", + "lastUpdateDateTime": "2021-09-23T14:44:23Z", + "createdDateTime": "2021-09-23T14:44:23Z", + "expirationDateTime": "2021-09-24T14:44:23Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -196,31 +196,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/35f29916-514a-48d2-a52d-bce89830634f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ee21c95b139140eb27a70f40500de907", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a2325d66-4482-4bff-a357-fcc15152e4ec", + "apim-request-id": "fcaed530-203b-4d9a-80a5-1dd952374449", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:17 GMT", + "Date": "Thu, 23 Sep 2021 14:44:28 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "35f29916-514a-48d2-a52d-bce89830634f", + "lastUpdateDateTime": "2021-09-23T14:44:23Z", + "createdDateTime": "2021-09-23T14:44:23Z", + "expirationDateTime": "2021-09-24T14:44:23Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -233,31 +233,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/35f29916-514a-48d2-a52d-bce89830634f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed63cf005c3c6ddab795afb3722d9d2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "941eba36-d3ba-41e8-b523-3c07a8f3b89b", + "apim-request-id": "8484044c-fee8-482e-988c-1fa865e4f29b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:18 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "10" }, "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "35f29916-514a-48d2-a52d-bce89830634f", + "lastUpdateDateTime": "2021-09-23T14:44:23Z", + "createdDateTime": "2021-09-23T14:44:23Z", + "expirationDateTime": "2021-09-24T14:44:23Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -270,31 +270,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/35f29916-514a-48d2-a52d-bce89830634f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f942fc5cd58b36ca758d02173c027591", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7fe1846f-a37d-4761-aa45-f78af4b1a054", + "apim-request-id": "246596ed-471c-4cb4-8aa3-77909b7e4352", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:19 GMT", + "Date": "Thu, 23 Sep 2021 14:44:30 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "35f29916-514a-48d2-a52d-bce89830634f", + "lastUpdateDateTime": "2021-09-23T14:44:23Z", + "createdDateTime": "2021-09-23T14:44:23Z", + "expirationDateTime": "2021-09-24T14:44:23Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -307,2473 +307,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/35f29916-514a-48d2-a52d-bce89830634f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "551d58a785ebfe1aefb436fb6438cefa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5b52b74-2678-40d2-81be-812aca7fb97a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "53e4e00aefca2a7b052d78ae5ac330b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9987e9f7-8360-4801-91b5-53cf8279dc65", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:22 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "190c1d20470fd642e1440ad79fced23c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9f6040c8-a9c5-49df-b8ab-3611b9ef8ed1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:23 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5b0d08bf221db7c6ddf350be0c6ca42c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bb78c342-b90c-4910-a436-19bf8688d0e8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "46db8183b42cc2ea9d0e7186e4a48b36", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a028c344-5487-4a05-b3cd-8abed0dd2300", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "51ef3c5ad4b6fe9856543c1cf784c975", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6613dc68-1b99-4482-94f8-1f897cd8ff5d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1e54de9f8bf30a101e4abe0fb040d239", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "39c23414-1edc-44fa-8158-fb99130f83ce", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:28 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d0641968537cae75e9ddf0d777ceca19", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1c13bd37-a0cc-4404-9572-7bf4c814a176", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "06e6fc446c4fce422ce4336b16884e16", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5ebc4bc7-27f0-4468-b7c0-7b27a92e7aec", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ddb30381f81f4cf868a534169b389250", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1cc4f322-4809-49ff-84de-e3dbf33784bd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b3cba480cc59fbe9d695a4981f0a9860", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a835ba47-2bc2-4c24-9b75-11b1b2ece6df", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:32 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7456da8eec1a4bf903999daa382c33f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f4d3871e-0280-42f7-b3b8-6aa1ed83a4d5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:33 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "71eae3519abdb5bc1ab8078a54602c5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ccb9f3eb-f2f6-4a35-ab1a-83da34659c57", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:34 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c187d40d1ee19335ab7fb0c02e3ec3aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ccaa6812-e07c-42a2-be04-b96825ba775d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:35 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3c46b061261ff3a31da05a62e56ef7a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a37f9afa-35dc-4860-8a3d-8922321fea8c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:36 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "639d3f6c71a43212ad56c63deafc86db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "95f89717-b895-470b-875a-fb1fe0bf8a4a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a3285cf4f01ae63e3193a341c4d3ae3c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "90ccfbaa-365e-4bde-95cc-b9ef43e9dc4b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ef530d885fa1f0059e138fc860650921", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1e95de66-6b3f-4440-8dcc-68c71d2909a3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "886d7e1953457c8801b63211ced06ed9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2a4175e4-8d75-48dc-8117-d9db549d8cd5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ddb489a897a8943957380506607586cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3e035959-78a2-41c7-bb7a-04b243995c13", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:41 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4627818a256635f684d6eeeb2df422cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f9f3e1d8-853c-40aa-b028-bfb185fa8b1b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d620b5a52bb0827844d8310d4e821c8b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "95dda9df-8228-4718-ae28-a87a22e623cb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4c86662f28a98273927f58d2a94e6762", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5a86a6f9-83b1-430a-a976-0a97925a9cfd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01: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" - }, - "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "aa603716af555e1b09a4018df4e9e702", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a5e8b983-3a48-494c-9bcf-59783fe0975c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01: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" - }, - "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c6bb62bad56d7d24429d4430d3a6d9f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2298eb89-ef9b-433c-89e1-80dae2c401dd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:46 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "16f6ce70712180354b28420426e58ea8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1da1c32d-923e-4003-a2b3-880fd7cdf64f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01: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" - }, - "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "46185698a19240f513e367b76aea8b62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "06048173-8530-4f98-976c-446a1851dfc1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:48 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "251d0bcbd0f348e02d3b7a45921f565c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "390ef646-66dd-48d1-b8ec-eeeedf5791e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7c989c0f938dcf63d9b5033d097e1561", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ae3a7ecb-3e76-49e4-ab13-0721ade530f5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1a38e09d68c8c7b575d0185626b0adf3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4435e698-dbe7-43ea-ba0d-2a994aa83f8b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:52 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cea80b8c0e5138d4a74d4c3dcca33eaf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "764f2540-f491-40be-884e-56e68624e2ba", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:53 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b2a819263be7a794e7d007bd7a0ca929", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e6c7e860-adcd-4a18-8e11-653b275d5e5d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:54 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "feb0100746d58e0f0b00737a1b77fbd2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "43de86ba-6015-4233-98fe-525c07b02ab3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0c306991fa08500c7600e7800717be9a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7a9bbf4a-0a0d-4500-bb73-44dc60e0e14a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:56 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bc3623a43ff2dfd90919a7e6c8198b6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2d80b2c4-cecd-4a85-9624-8449dbf36f40", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "102b34d59ddc0c21045f88d45e8e87f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ffd9698c-d341-45ca-b4ab-28596f048c3c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f8d6d8413f4152e0905002ee5325885c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c7cc468b-e79b-4cf5-8c11-4a327793ca7e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d2ab7875aeeb07be0229b792b704817b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ec46642e-ae5c-40e7-af59-a5061f67fa36", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:00 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f0a5b3929342962e54d97f8b9a32b9df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "83191734-e024-4fb8-9e71-6cd06935c1ce", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:01 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e65f2bd7b4e3930819cff518874d9b8b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "47c8ad00-6a0f-45c5-9d07-6584629fa9fb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:02 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a05b87cf9780e21949147e112e336ccf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3167e808-af84-4690-9018-d44b3953043c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8bbad76f9aa5de97aa11d7739d160e06", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "562c3a5a-33a2-474e-ab0f-250231a3dc64", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "12bbf33e19d63f5f117c9dce35f765e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7753f182-3a8b-46f3-8acf-1f915d53002f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:05 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "afa826620f9334e6f07df56ec0a64532", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "90987589-074e-4732-940f-abdd27ef3d68", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:06 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3ad37705597856f8787a7a28fdc8a8b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c93aa561-81bc-4945-9dad-45c494fb8aa6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7610f1ac5f6e2e730c86225923f17f6a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9f4988d9-94ec-4c4a-8307-a5d1247235c5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bec86a372a23096d2d52371895be3727", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b7d42e49-6238-41a7-88d9-3dd2b2b4aca7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cfc142d4ce96a6c403a52df1379f3287", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "351450fc-b2a5-4d4d-aee2-a3991012c2fc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "92f00ffbe9ff828f8407491b285b994e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5f454956-7bc4-4714-9a43-d061ad115481", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e184fb4faf2f68d4a622bb7efc7bd28e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "595da80f-71a8-41b3-a856-f57c055350d8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:12 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "861caf20a4cdeb27b23f4b8f85a87ea8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cbdd72ae-00e2-42a7-990e-a0e330db01f9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3ba2df0b511a4b583a88ecdd2e118508", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9ea260a5-5a0a-4bd0-aaa0-08038b96011a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:14 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "78fbbb34133eaa80d4992eef6445e3fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3db5779e-67e1-4519-abd4-9543845efa26", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1d7212a396d9ce7357d04b45b849bca1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ba958819-5bc6-4219-8d3c-5703e2e28c85", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:16 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c95a42ba05acf8695ef767812268e6f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1aa91ec9-2ef5-4817-8043-58b09062066f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:17 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1b39eea4679e9e2e472c216dc83af28a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c40e8603-f19a-4851-b80e-f7139776a49b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:18 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "22358cdc19ea9e51a97abfe22ff2acee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cd02ac3d-7635-4f90-bb85-aeb281d2621b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c9a155eaa010530313bc817fe4fb3023", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0c74410e-2320-42ae-ad49-0fc73a468472", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "96a4dd04c4338a0b9c9b7224a84c6e55", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "757d2a5d-82ae-4910-b87a-9383a9c41002", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:22 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7283328028993c7a89e20e2e97d2baad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dc7abb0c-987c-48a7-b57a-8f4783c0f4a9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "52dd9b49164d25bb49172d742edfaac7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8fcc1a61-7d5b-459b-85b6-bc5f12065a15", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:24 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b1fe2c4dbd77dc8a63680c51b6dcf2ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f20c7a0e-92b5-49fa-8dbd-554e4de356ea", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0ddac4e11c6f6a08775e2981fb050daa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f5207535-90e4-4e06-bbfe-b6f4f1a30528", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6be1473708d38b351001efe5096a6f6d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0f89dbc4-138e-4ba8-8913-d0562cd22f5a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:27 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6a9362249d043057249439199408e05d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "51139147-b8b8-4435-a217-0420eadb3d9b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6e19625a86fbd8f78e4efc6e2d22610d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "584d4c69-aa90-4389-a661-63a2ea4ff826", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:29 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithOpinionMining", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "985dbbeea37199a5efb0473ecf1cf707", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c1ffb2df-3d43-462d-a3c5-dcca5cda4614", + "apim-request-id": "d6787186-d95f-4ec5-8d3a-da56a8933623", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:30 GMT", + "Date": "Thu, 23 Sep 2021 14:44:31 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": "65" }, "ResponseBody": { - "jobId": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:47:30Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "35f29916-514a-48d2-a52d-bce89830634f", + "lastUpdateDateTime": "2021-09-23T14:44:31Z", + "createdDateTime": "2021-09-23T14:44:23Z", + "expirationDateTime": "2021-09-24T14:44:23Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -2784,8 +342,7 @@ "total": 1, "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:47:30.5651453Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:31.1261715Z", "state": "succeeded", "results": { "documents": [ @@ -2929,6 +486,6 @@ "Variables": { "RandomSeed": "333490656", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ 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 index bab92ad11269..7a84d05ec1e6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "241", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d947b1674349ba4bb6c6b39da5586b76-cd89f80d992ad449-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-794d3cb128de3d478d2e5205affe2e83-1cd54408047dcd48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc10ae4f3809e9b40d4f6b783fc973c7", "x-ms-return-client-request-id": "true" }, @@ -38,43 +38,43 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2025a404-1f81-4df9-9e8c-1f17c62f07a3", - "Date": "Fri, 06 Aug 2021 01:41:44 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "apim-request-id": "ffa1aff2-73af-4a47-b2ad-49dac695b760", + "Date": "Tue, 21 Sep 2021 14:56:17 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6da748c4-8f02-441b-ace2-cedb899300e5", "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": "204" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6da748c4-8f02-441b-ace2-cedb899300e5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e45290396662ad6e1e38f63536f933b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cfbe45f9-979d-4fe9-a1a2-a0af3ce25212", + "apim-request-id": "026543ec-707e-4e3f-9485-59b63083fdcd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:44 GMT", + "Date": "Tue, 21 Sep 2021 14:56: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": "12" }, "ResponseBody": { - "jobId": "3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "lastUpdateDateTime": "2021-08-06T01:41:44Z", - "createdDateTime": "2021-08-06T01:41:44Z", - "expirationDateTime": "2021-08-07T01:41:44Z", - "status": "notStarted", + "jobId": "6da748c4-8f02-441b-ace2-cedb899300e5", + "lastUpdateDateTime": "2021-09-21T14:56:17Z", + "createdDateTime": "2021-09-21T14:56:17Z", + "expirationDateTime": "2021-09-22T14:56:17Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -86,31 +86,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6da748c4-8f02-441b-ace2-cedb899300e5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "026f5447158ee5d664682b08d83e8d91", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3eff1ff-f11e-476c-ba45-db2ac08df77b", + "apim-request-id": "839eb465-6041-4b17-812d-5e4caa1735d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:45 GMT", + "Date": "Tue, 21 Sep 2021 14:56:18 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": "12" }, "ResponseBody": { - "jobId": "3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "lastUpdateDateTime": "2021-08-06T01:41:45Z", - "createdDateTime": "2021-08-06T01:41:44Z", - "expirationDateTime": "2021-08-07T01:41:44Z", + "jobId": "6da748c4-8f02-441b-ace2-cedb899300e5", + "lastUpdateDateTime": "2021-09-21T14:56:17Z", + "createdDateTime": "2021-09-21T14:56:17Z", + "expirationDateTime": "2021-09-22T14:56:17Z", "status": "running", "errors": [], "displayName": "NA", @@ -123,216 +123,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6da748c4-8f02-441b-ace2-cedb899300e5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f2ab8555934e81b40639ed1417fb313", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8baac412-2a3c-405c-97c4-e3fd872923b3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:46 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": "3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "lastUpdateDateTime": "2021-08-06T01:41:45Z", - "createdDateTime": "2021-08-06T01:41:44Z", - "expirationDateTime": "2021-08-07T01:41:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ea31b61c715a2439ba6d7ff93a66d4df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4eb30241-f76d-43dc-9ffd-7c6cb5a65aa8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "lastUpdateDateTime": "2021-08-06T01:41:45Z", - "createdDateTime": "2021-08-06T01:41:44Z", - "expirationDateTime": "2021-08-07T01:41:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7edf65aaf3ceed7f3986c12a7704a3e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e7b1f490-bab9-43cf-8366-56a7a30e506c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "jobId": "3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "lastUpdateDateTime": "2021-08-06T01:41:45Z", - "createdDateTime": "2021-08-06T01:41:44Z", - "expirationDateTime": "2021-08-07T01:41:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "21ec18b4a30de4377f0685c7d921adda", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c0631a0e-7262-4f89-a81a-8a47a3c1308a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:49 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": "3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "lastUpdateDateTime": "2021-08-06T01:41:45Z", - "createdDateTime": "2021-08-06T01:41:44Z", - "expirationDateTime": "2021-08-07T01:41:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dc27be8f359f29443743b1d3af0facb5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a0deef13-5a29-428d-a4d5-aafb823e81bb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41: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": "3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "lastUpdateDateTime": "2021-08-06T01:41:45Z", - "createdDateTime": "2021-08-06T01:41:44Z", - "expirationDateTime": "2021-08-07T01:41:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "22449ac9b27907d12dfbffc86db71417", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "119253ef-64b4-426c-8600-9b5332d3b38d", + "apim-request-id": "a1fc69a4-3bad-4cc7-9234-7aaf978ccb12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:52 GMT", + "Date": "Tue, 21 Sep 2021 14:56:20 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": "75" }, "ResponseBody": { - "jobId": "3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "lastUpdateDateTime": "2021-08-06T01:41:51Z", - "createdDateTime": "2021-08-06T01:41:44Z", - "expirationDateTime": "2021-08-07T01:41:44Z", + "jobId": "6da748c4-8f02-441b-ace2-cedb899300e5", + "lastUpdateDateTime": "2021-09-21T14:56:19Z", + "createdDateTime": "2021-09-21T14:56:17Z", + "expirationDateTime": "2021-09-22T14:56:17Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -343,8 +158,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:51.4619861Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-21T14:56:19.9910231Z", "state": "succeeded", "results": { "documents": [ @@ -378,6 +192,6 @@ "Variables": { "RandomSeed": "1233550557", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ 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 index b1ef1d9f8e56..c7989472e697 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "241", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ecc4d928525f1439fb7740b21684fe1-6bd8ea498fcd764e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9e22de479f26fe4587e0c57a81003ccf-d488cd1acfa60244-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f64d021068f23b47239dc64d32ac0d55", "x-ms-return-client-request-id": "true" }, @@ -38,43 +38,43 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fd36caf5-410d-4f56-b476-881af0fbdb5e", - "Date": "Fri, 06 Aug 2021 01:47:30 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "apim-request-id": "b4d4173e-ed7a-4e25-af0f-0034371b8151", + "Date": "Tue, 21 Sep 2021 14:56:20 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", "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": "171" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "326f6a53ce870c398bb9ee51f13f5560", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa1d2026-b13a-47b5-b50c-50dc66482e17", + "apim-request-id": "8cc971cb-43cd-4a62-968b-9fbbd20b82b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:31 GMT", + "Date": "Tue, 21 Sep 2021 14:56:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "730" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "1f52841e-c71f-448d-9745-81d79027c9e2", - "lastUpdateDateTime": "2021-08-06T01:47:31Z", - "createdDateTime": "2021-08-06T01:47:31Z", - "expirationDateTime": "2021-08-07T01:47:31Z", - "status": "running", + "jobId": "2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "lastUpdateDateTime": "2021-09-21T14:56:20Z", + "createdDateTime": "2021-09-21T14:56:20Z", + "expirationDateTime": "2021-09-22T14:56:20Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { @@ -86,31 +86,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4d2db5835d6ee56b0a068d1cd4f24286", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "02418d3a-ae85-4ad4-9ec8-450bc8956756", + "apim-request-id": "99b2dd77-c936-4230-b175-fe3c258f8ae3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:32 GMT", + "Date": "Tue, 21 Sep 2021 14:56:21 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": "1f52841e-c71f-448d-9745-81d79027c9e2", - "lastUpdateDateTime": "2021-08-06T01:47:31Z", - "createdDateTime": "2021-08-06T01:47:31Z", - "expirationDateTime": "2021-08-07T01:47:31Z", + "jobId": "2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "lastUpdateDateTime": "2021-09-21T14:56:21Z", + "createdDateTime": "2021-09-21T14:56:20Z", + "expirationDateTime": "2021-09-22T14:56:20Z", "status": "running", "errors": [], "displayName": "NA", @@ -123,31 +123,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "84470c68f8b742c6c8406a3979f549e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa25fe7f-322e-4587-a4a4-a165df012f39", + "apim-request-id": "61699814-f5ca-4c79-9d96-e270d4237abb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:33 GMT", + "Date": "Tue, 21 Sep 2021 14:56: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": "7" }, "ResponseBody": { - "jobId": "1f52841e-c71f-448d-9745-81d79027c9e2", - "lastUpdateDateTime": "2021-08-06T01:47:31Z", - "createdDateTime": "2021-08-06T01:47:31Z", - "expirationDateTime": "2021-08-07T01:47:31Z", + "jobId": "2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "lastUpdateDateTime": "2021-09-21T14:56:21Z", + "createdDateTime": "2021-09-21T14:56:20Z", + "expirationDateTime": "2021-09-22T14:56:20Z", "status": "running", "errors": [], "displayName": "NA", @@ -160,31 +160,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7dc96647c07ef5e7fe892880411d3899", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a378145-3b68-42b5-8343-12918b147447", + "apim-request-id": "60bbd7ff-8e77-4bac-8d72-101acffc5b6a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:34 GMT", + "Date": "Tue, 21 Sep 2021 14:56:24 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": "78" }, "ResponseBody": { - "jobId": "1f52841e-c71f-448d-9745-81d79027c9e2", - "lastUpdateDateTime": "2021-08-06T01:47:31Z", - "createdDateTime": "2021-08-06T01:47:31Z", - "expirationDateTime": "2021-08-07T01:47:31Z", + "jobId": "2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "lastUpdateDateTime": "2021-09-21T14:56:21Z", + "createdDateTime": "2021-09-21T14:56:20Z", + "expirationDateTime": "2021-09-22T14:56:20Z", "status": "running", "errors": [], "displayName": "NA", @@ -197,31 +197,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e4e86876d1f78ba8eeeb842df2326c15", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a55d016-f359-46b9-a9a2-55b6ac775350", + "apim-request-id": "706f019c-0e0e-4a51-a31b-a2b394901ca4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:35 GMT", + "Date": "Tue, 21 Sep 2021 14:56: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": "14" }, "ResponseBody": { - "jobId": "1f52841e-c71f-448d-9745-81d79027c9e2", - "lastUpdateDateTime": "2021-08-06T01:47:31Z", - "createdDateTime": "2021-08-06T01:47:31Z", - "expirationDateTime": "2021-08-07T01:47:31Z", + "jobId": "2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "lastUpdateDateTime": "2021-09-21T14:56:21Z", + "createdDateTime": "2021-09-21T14:56:20Z", + "expirationDateTime": "2021-09-22T14:56:20Z", "status": "running", "errors": [], "displayName": "NA", @@ -234,31 +234,142 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ed4aabdc428a8072551852ed04501ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "759dbe6a-a21f-47c4-a10a-709baae06011", + "apim-request-id": "282037f7-ea9c-4e88-a1e2-9fbbe12687ee", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 21 Sep 2021 14:56:26 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": "2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "lastUpdateDateTime": "2021-09-21T14:56:21Z", + "createdDateTime": "2021-09-21T14:56:20Z", + "expirationDateTime": "2021-09-22T14:56:20Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "11c2d108650c76ebbd3e8e933bba02cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aa06bd28-d06c-4999-a21a-83d543a73661", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 21 Sep 2021 14:56:27 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": "2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "lastUpdateDateTime": "2021-09-21T14:56:21Z", + "createdDateTime": "2021-09-21T14:56:20Z", + "expirationDateTime": "2021-09-22T14:56:20Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "96c3121dca48b1706040bfa64c7abba9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0182c80-83a1-4ffe-826b-ef2ae7f14941", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 21 Sep 2021 14:56:28 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": "2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "lastUpdateDateTime": "2021-09-21T14:56:21Z", + "createdDateTime": "2021-09-21T14:56:20Z", + "expirationDateTime": "2021-09-22T14:56:20Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210921.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2125d8ea5a6f5708be5eb0ea35746c6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb538db9-63df-4749-9cd4-dd71c2f189e2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:37 GMT", + "Date": "Tue, 21 Sep 2021 14:56:29 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": "67" }, "ResponseBody": { - "jobId": "1f52841e-c71f-448d-9745-81d79027c9e2", - "lastUpdateDateTime": "2021-08-06T01:47:37Z", - "createdDateTime": "2021-08-06T01:47:31Z", - "expirationDateTime": "2021-08-07T01:47:31Z", + "jobId": "2a573d60-cbf2-44c7-bb55-c8ad0113abfd", + "lastUpdateDateTime": "2021-09-21T14:56:29Z", + "createdDateTime": "2021-09-21T14:56:20Z", + "expirationDateTime": "2021-09-22T14:56:20Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -269,8 +380,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:47:37.3970667Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-21T14:56:29.0744847Z", "state": "succeeded", "results": { "documents": [ @@ -304,6 +414,6 @@ "Variables": { "RandomSeed": "1355402112", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTest.json index 882b41af8233..ab787b414a9f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "258", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c134b4e00c52bd48bbe37a0106814caf-d7fe5a2c3a0b864a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5202b0960872ee4f8ab4dadb7fb4d148-9e504b97b1168f4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c99cb42a5a82e854b9e5b6d84f7b86ab", "x-ms-return-client-request-id": "true" }, @@ -36,13 +36,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "5f36ce92-0f01-4dca-a5ce-9b20061058e8", + "apim-request-id": "b129dfaa-4632-402e-be69-aa3b6ba297a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:08 GMT", + "Date": "Thu, 23 Sep 2021 14:42:26 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": "9" }, "ResponseBody": { "error": { @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "776948702", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTestAsync.json index 1e72d465a810..ad58ccb5bb31 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "258", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e045c029d608894786ea975fd22f0fa9-d2cfcf4a85b8fc44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-97eb6ce5cf38e746a4239146b5463f5c-186841abcf91cd47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac619f24e6117d0afaa59ef96ef473c7", "x-ms-return-client-request-id": "true" }, @@ -36,13 +36,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3621c834-26f3-487e-9502-47e7b6663d8e", + "apim-request-id": "c5928ab8-a964-4e4f-a25a-f59d1d52acc2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:52 GMT", + "Date": "Thu, 23 Sep 2021 14:44:36 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": "32" }, "ResponseBody": { "error": { @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "1285200460", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTest.json index 4db8aa0a8541..63c5b6b2ab08 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "212", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a9d5bb24508b0b46ae82a0b0e6c0799c-5740ca7dce83214d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b6477f59a7b2a94ba8a6fba1dee93d00-3f9d14a61984234a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5576fa283fd263773849a876efb14577", "x-ms-return-client-request-id": "true" }, @@ -38,42 +38,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b0ac937d-9ba7-4ee0-ae3b-3aef0866b75b", - "Date": "Fri, 06 Aug 2021 01:42:02 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "apim-request-id": "ddbcc497-65bd-404a-81cf-b324147425de", + "Date": "Thu, 23 Sep 2021 14:42:16 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "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": "304" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d15a28e9d4af4ce3e85229bba2a5c170", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dcc214be-0290-4bd1-9dfa-9bddd8ee7542", + "apim-request-id": "54f64c7b-cabb-4bab-8db1-9ca49432cc59", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:02 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:02Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:16Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -86,32 +86,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c53291c346adf1e1915603c512bf7f11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d536230f-a40e-4875-a02d-cbfa5ec66d8d", + "apim-request-id": "60c56080-b436-4747-a852-917800ea96b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:03 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "10" }, "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:02Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "notStarted", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:16Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -123,31 +123,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d55ac00f984545c172a6c8015bbc092", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf927754-7365-43ba-ab1b-1131e652774e", + "apim-request-id": "0b15f44b-14bc-481b-acae-6522011c0d43", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:04 GMT", + "Date": "Thu, 23 Sep 2021 14:42:18 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:16Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", "status": "running", "errors": [], "displayName": "NA", @@ -160,31 +160,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eb238877f7fa2ca46684059d01e3a29", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bdb40eca-d1ab-4d80-8864-e6cf3d5a2073", + "apim-request-id": "a02190b0-17bb-4f2b-9c95-147ab3110d44", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:05 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "11" }, "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:16Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", "status": "running", "errors": [], "displayName": "NA", @@ -197,31 +197,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f5ba18d3b450caeb35ddae83d961dcd5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd993ddd-ffc6-4df1-98cb-ebb0c1daf7b6", + "apim-request-id": "a00ddc68-25ee-44e1-aa67-015a33803f6d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:06 GMT", + "Date": "Thu, 23 Sep 2021 14:42:21 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": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:16Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", "status": "running", "errors": [], "displayName": "NA", @@ -234,31 +234,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d93d7195200c8191e2b2c61bb80384f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c98c164f-08f8-495b-b4d7-67b607b47666", + "apim-request-id": "dd631b6e-b2b0-4be8-bef1-712419917841", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:07 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "7" }, "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:16Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", "status": "running", "errors": [], "displayName": "NA", @@ -271,31 +271,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fdac43f0ca00d3414ce829a2d047c9e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bea70fe9-f4b3-42c4-8908-70290e6d96a9", + "apim-request-id": "64d3aaa5-4b4b-4df1-b511-d4a1efdbd6d6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:08 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "10" }, "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:16Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", "status": "running", "errors": [], "displayName": "NA", @@ -308,31 +308,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5fc36b8c60e0b21c8639139eedd01131", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97723e87-d1fb-4b68-aa31-57418a803be4", + "apim-request-id": "79cadadd-dace-4b59-9ff8-085962af8f12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:09 GMT", + "Date": "Thu, 23 Sep 2021 14:42:24 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:16Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", "status": "running", "errors": [], "displayName": "NA", @@ -345,327 +345,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9692b558deb4cad42f698c24f7efb09a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c5a5d1d-e77d-4c13-991d-7ba2a8c95ed1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:10 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4d8fe1e9253f8f1826fa77c7b6a3e67c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6b43ef57-ec1b-4484-b9be-fa1c71e25a4c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1a49f7d632b4ad3096f82f77d3f8ba96", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6f6e48c8-cfbf-4fed-b513-815d5197f8c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0bb47988c44033f29d036fba670d138b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ffc57fb8-cde4-41bf-8e76-49dce4bbf7e8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:13 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "004d108395a6b6e6b1e1b746f5a0bb2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "24064bd0-d70c-4bad-9b27-ed6b1fe5090a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:14 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3d3ee03fdaef123b04157cb0c3754688", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d895796a-fb88-4fd7-9a41-e7c27ac8d76c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c3f3a4e4b9aaf3f092fe5a5e0dab3efc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "173c2983-d293-4446-bba1-97f6077d9331", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "867b4147d5cfa89cd43bfc911836f33b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f465e3c0-b541-477b-ac74-6ffddfc02c72", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "51622e9bf7ad8583f04babf07fdc0559", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fb48d2f8-2faa-4b99-8d07-aed8a7da38a8", + "apim-request-id": "355690d2-8b71-46e9-8629-d3e6467de95c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:18 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:16Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", "status": "running", "errors": [], "displayName": "NA", @@ -678,1696 +382,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2fa790ef-9b19-4020-a1e6-c6133e2245ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "81687fd7bffa0fb9074bef6fbd5fda5c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7f787b48-5d92-4857-bf5c-7b71b28edc33", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - }, - "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dec31f0aed494f4fbdf596842aab28f7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "65cc9477-5d3f-4a80-9f8d-4b877018eb54", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:20 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "98b9a23571cddc40745349620814c791", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "83838b18-04d7-4cb9-b14d-51127790e49b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:21 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "60e54f702619ea103019c4052935e45c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "96c8406b-66e0-4889-998a-824b5fa487bb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:22 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1b39f82241a5998fdee76af6a3ed47a8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ce24d1b8-29fe-4fb4-965a-ad2ce0111985", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "da13042dc8c50edd92cf68b3ad3bb23e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a038f96a-c714-4f96-bd64-307e8e2edc6b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:24 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "103fec6eacda2eecc04c8232bc1a4642", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "76b80d81-36de-464e-81d1-b641337079e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:26 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "24d71bd10a2259961a2a89d5d9dbeca2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "aafadcdf-2611-4718-9ae6-43d971eefc74", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - }, - "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b6882b3437ad81cd18e41a7845ab5277", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4cdc8290-75b8-4b66-8c80-e12a49355b63", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:28 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "91e226898e63631c56e6f5b0231655e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ad31900e-5db5-453f-a9a1-ba4abe0f0f52", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:29 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "91fddf608f929a944e560b3def1d136f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "496a2533-74e4-4350-b664-6552aa310eae", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:30 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b24c11d85af9a53f0e2460c7411d5d02", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cf020625-3734-4a85-9d53-aeaf0a591e6d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:31 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6618358ec0adf9e59147430d82df7438", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "346ae837-32e0-40fe-9d79-b3badac38fae", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "12d786d2a3c905eba057836d2ecd5830", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dd52c076-5a78-43e6-ba2b-824322efb110", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:33 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b9af09f9ad0518c12b5321b21731232f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b4323f87-6e12-4e14-848f-ac3d88df5ace", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:34 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bbf528af4b46eb384a12c6563d78cac4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6b8bc96d-0e81-47cd-a70c-fc83b2903b66", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:35 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "791412eeba2f2432c5bee6768139ee6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9d10a4db-a51f-499b-88e2-f32e4fe1f152", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:36 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "06bd53349dd7adead0c36ff3e66bdab3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a685d36d-a5ed-4149-b852-ef43dbbc73ae", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "05c35c88a91df5fff6d0f58765c26911", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d17ac286-41b1-476d-8fef-c7c7b5d8de2d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e9215823c4ba50ed2866a96c4b3e3d5a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d2f323f6-b8ee-47c2-bdee-400eb07397e0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "25ed33e3e9758b5053c80f06a862480d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2d9dee9c-332f-48bb-8575-2ee67d84900d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:41 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8ecf5d5af149c3f96f72dcb7ff93aab7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "61d2d42b-9edd-42bb-8c95-cf806e917af8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "31a49b9244d43a9b079695f1b4e6a8c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0df78a9e-3c2b-4185-b5bb-8e9fb6bb9429", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:43 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ed129b1eaf6ef2103a29b5020c998bc0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "75621926-120e-4a11-84c9-92d36e2be15e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:44 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0d73571e16bd1638c29587b35b070e88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5e87409b-2ea5-48d9-877e-49adbb8676b8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "639816cabc81e3498ab1f7ab8e982d6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9109e9ac-9a3c-4b12-88ed-575d5fff952b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5dd3d50a9b73070863fb2bd8275d9732", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "456cd41a-2d7c-48c3-9578-2de41b218d7c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:47 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f6382d1a2800613f0e8f820c1e8d8729", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "16b82f43-af92-4928-9741-bc6170106ede", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "85a91967b1332f150d9000859170bc2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "92d11c3e-a336-4d8f-96f5-967908ddbc26", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "308" - }, - "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6190c41a3760e26d95724ee318fce8d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8e19fd22-55a4-4c9a-ba71-41b4e02b163c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0e71027411b468fe1708e87027bad09e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "26337b34-e760-495e-aa39-5f4656c16a89", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5af155d326fd30c8acc7efc163321611", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4355b509-36c8-47c7-a5c1-f01fb3758ae6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8f112ba7adff0878c62749574efcbadb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "25045257-1274-48d1-b804-7d031112a66e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:53 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c210b0a28e0a4dd8394062ed213d05e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "77fba7f7-8f72-4ffe-888f-03155539bccb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:55 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fcc8d7f140a8259fdde993d6dc70e2af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b29e7d09-0935-4561-a741-9b5e9becb4f1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:56 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b31f130c5421180652c355be4b8be688", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "22aca584-9142-4932-aa50-6a8f49a8af20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "76656421bd33613311eae520fb0270c8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9c6afb17-40de-4eb5-bc77-f0be6bb4d6da", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "90" - }, - "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0ee0b25d521d9dc3d0b0a9e5eae0d951", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8cfc732a-b274-49e9-a2ae-ed57416acf4c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:59 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "78b40b026b0a4e7be0bda1366fe51d50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3e7f11e2-f5d8-4cfa-8355-c35013bbe252", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:00 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "98608d52d8aacf6aa1c8a583144d7630", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b10f10ce-b6bd-451c-82fe-9d2404bfa38e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:01 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ef1d9310f84df2bd37912d60b08c2eea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ff85fa43-2880-4764-bd8e-88ccdbd9d399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:02 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5d925892417f2aa6a0e4d642c6f73a92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fe37f71b-9d8c-45ec-a2ff-c3681bf247b0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:04 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "db2571472dc75a03cf6e6119ab0a1f14", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7bdc278e-a130-4b97-941d-8507212512f2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:05 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bbf1ba9919bbcfb1ecf34f69217b2c3f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f4230bce-3276-466c-9e06-fc5e86c9ee5b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43: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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3f189a565266642255378d10df8d7f95", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "32b7247a-0ac7-43cb-bc7c-9504ede0ddcc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:07 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0ba8c2c47f062dd7bf56eed4de993854", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4d8fe1e9253f8f1826fa77c7b6a3e67c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51ea0487-d4cc-4848-a4ac-bfff5db34065", + "apim-request-id": "a501041c-2f22-4855-bab5-fe4dc37ceb97", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:08 GMT", + "Date": "Thu, 23 Sep 2021 14:42:26 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": "88" }, "ResponseBody": { - "jobId": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:43:07Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "2fa790ef-9b19-4020-a1e6-c6133e2245ab", + "lastUpdateDateTime": "2021-09-23T14:42:25Z", + "createdDateTime": "2021-09-23T14:42:16Z", + "expirationDateTime": "2021-09-24T14:42:16Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -2378,8 +417,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:07.891801Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:25.8653809Z", "state": "succeeded", "results": { "documents": [ @@ -2417,6 +455,6 @@ "Variables": { "RandomSeed": "538531571", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTestAsync.json index 3ecb60b3b6f5..3c80487c2c67 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "212", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3a8e26958b28534d9030cf6904b6e6c8-b9eda1621842db4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-90b521ef25b971499e474b6c3f808780-a40c7ba20ebb904d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f91fef4332cac890575fea1876896219", "x-ms-return-client-request-id": "true" }, @@ -38,42 +38,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cb5a91cd-2a05-494c-b318-1f143b64834f", - "Date": "Fri, 06 Aug 2021 01:47:46 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "apim-request-id": "4895c6ec-fb61-47d7-a271-6d578c77b05b", + "Date": "Thu, 23 Sep 2021 14:44:32 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/dd3d9718-dad5-4453-b01c-7256d181aba3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "188" + "x-envoy-upstream-service-time": "218" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/dd3d9718-dad5-4453-b01c-7256d181aba3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b963f4a2286260197a4218e5186ef72e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce5e32c8-557e-4b3a-9217-3a0e123219b0", + "apim-request-id": "34bcf6e8-f8e6-4976-988f-d6f167cc9aa1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:46 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "10" }, "ResponseBody": { - "jobId": "4d5b6de2-3820-4f7c-9780-719a7bc21690", - "lastUpdateDateTime": "2021-08-06T01:47:46Z", - "createdDateTime": "2021-08-06T01:47:46Z", - "expirationDateTime": "2021-08-07T01:47:46Z", + "jobId": "dd3d9718-dad5-4453-b01c-7256d181aba3", + "lastUpdateDateTime": "2021-09-23T14:44:32Z", + "createdDateTime": "2021-09-23T14:44:32Z", + "expirationDateTime": "2021-09-24T14:44:32Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -86,31 +86,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/dd3d9718-dad5-4453-b01c-7256d181aba3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46b6de92afb75c6e3d74cefdc9f3e8ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3912436a-2dc1-4bff-9b58-e4529ecfc060", + "apim-request-id": "92a49777-6f26-453c-9373-462ccb5ac9ca", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:47 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "8" }, "ResponseBody": { - "jobId": "4d5b6de2-3820-4f7c-9780-719a7bc21690", - "lastUpdateDateTime": "2021-08-06T01:47:46Z", - "createdDateTime": "2021-08-06T01:47:46Z", - "expirationDateTime": "2021-08-07T01:47:46Z", + "jobId": "dd3d9718-dad5-4453-b01c-7256d181aba3", + "lastUpdateDateTime": "2021-09-23T14:44:33Z", + "createdDateTime": "2021-09-23T14:44:32Z", + "expirationDateTime": "2021-09-24T14:44:32Z", "status": "running", "errors": [], "displayName": "NA", @@ -123,31 +123,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/dd3d9718-dad5-4453-b01c-7256d181aba3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "caf5e0e0a8461a36d6be7e881aabb0e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26f52916-1fd1-4999-88f6-9a4f972c59cd", + "apim-request-id": "f7e2361a-2bd1-4a7e-97d6-8e7dc757508e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:48 GMT", + "Date": "Thu, 23 Sep 2021 14:44:34 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": { - "jobId": "4d5b6de2-3820-4f7c-9780-719a7bc21690", - "lastUpdateDateTime": "2021-08-06T01:47:46Z", - "createdDateTime": "2021-08-06T01:47:46Z", - "expirationDateTime": "2021-08-07T01:47:46Z", + "jobId": "dd3d9718-dad5-4453-b01c-7256d181aba3", + "lastUpdateDateTime": "2021-09-23T14:44:33Z", + "createdDateTime": "2021-09-23T14:44:32Z", + "expirationDateTime": "2021-09-24T14:44:32Z", "status": "running", "errors": [], "displayName": "NA", @@ -160,31 +160,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/dd3d9718-dad5-4453-b01c-7256d181aba3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9785bb671cd3f26185067bed5a1c9687", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "655cc3f7-611d-4ed3-b4c0-503c4f0934a5", + "apim-request-id": "ff41cba1-eb78-4979-a54f-10e56cd5a0a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:49 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "4d5b6de2-3820-4f7c-9780-719a7bc21690", - "lastUpdateDateTime": "2021-08-06T01:47:46Z", - "createdDateTime": "2021-08-06T01:47:46Z", - "expirationDateTime": "2021-08-07T01:47:46Z", + "jobId": "dd3d9718-dad5-4453-b01c-7256d181aba3", + "lastUpdateDateTime": "2021-09-23T14:44:33Z", + "createdDateTime": "2021-09-23T14:44:32Z", + "expirationDateTime": "2021-09-24T14:44:32Z", "status": "running", "errors": [], "displayName": "NA", @@ -197,105 +197,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/dd3d9718-dad5-4453-b01c-7256d181aba3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37042e592c78e9e7a79b70f931e64292", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a8ffa56-f97f-46a6-a0a7-6d1c3f6322a0", + "apim-request-id": "36c49c7b-a2f3-4881-81fe-1c067bef830e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:50 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "70" }, "ResponseBody": { - "jobId": "4d5b6de2-3820-4f7c-9780-719a7bc21690", - "lastUpdateDateTime": "2021-08-06T01:47:46Z", - "createdDateTime": "2021-08-06T01:47:46Z", - "expirationDateTime": "2021-08-07T01:47:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0e96e5c4506dc4177f0345402c49c0ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "91b52e4c-18de-40fe-92a3-c3cf2cb1eb6b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "4d5b6de2-3820-4f7c-9780-719a7bc21690", - "lastUpdateDateTime": "2021-08-06T01:47:46Z", - "createdDateTime": "2021-08-06T01:47:46Z", - "expirationDateTime": "2021-08-07T01:47:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eb2ef72778a63a70d39bef37ac68c19f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "23673c6f-3a4d-40fd-bece-1fc640829c7a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "74" - }, - "ResponseBody": { - "jobId": "4d5b6de2-3820-4f7c-9780-719a7bc21690", - "lastUpdateDateTime": "2021-08-06T01:47:52Z", - "createdDateTime": "2021-08-06T01:47:46Z", - "expirationDateTime": "2021-08-07T01:47:46Z", + "jobId": "dd3d9718-dad5-4453-b01c-7256d181aba3", + "lastUpdateDateTime": "2021-09-23T14:44:36Z", + "createdDateTime": "2021-09-23T14:44:32Z", + "expirationDateTime": "2021-09-24T14:44:32Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -306,8 +232,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:47:52.4305978Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:44:36.4871731Z", "state": "succeeded", "results": { "documents": [ @@ -345,6 +270,6 @@ "Variables": { "RandomSeed": "1508474165", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ 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 index 99dce9ba3587..7a33ac82f2d8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "312", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-090a181abdc78f46b7a0a47cedeeac12-4cf67fe6d650994c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-dda4ac409f90b447972896fb194288d6-fe1c1e90c250794a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a87cf6cc9d26e81e4ad3c40561433cdc", "x-ms-return-client-request-id": "true" }, @@ -39,42 +39,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "25e3ac14-823d-4d55-b4fd-d6af6603aa02", - "Date": "Fri, 06 Aug 2021 01:43:08 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", + "apim-request-id": "366cb088-290f-4880-b8e8-f561fd502cbe", + "Date": "Thu, 23 Sep 2021 14:42:26 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/1a1291ae-1017-469c-9536-9635178dc751", "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": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/1a1291ae-1017-469c-9536-9635178dc751", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "829f189700a91102b7313377687a2cfe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1378b4e6-ff38-4482-9e68-6622f1eb13d6", + "apim-request-id": "00a6f758-7247-4623-a6ac-29f978ac2a59", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:08 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "lastUpdateDateTime": "2021-08-06T01:43:08Z", - "createdDateTime": "2021-08-06T01:43:08Z", - "expirationDateTime": "2021-08-07T01:43:08Z", + "jobId": "1a1291ae-1017-469c-9536-9635178dc751", + "lastUpdateDateTime": "2021-09-23T14:42:27Z", + "createdDateTime": "2021-09-23T14:42:27Z", + "expirationDateTime": "2021-09-24T14:42:27Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -87,142 +87,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/1a1291ae-1017-469c-9536-9635178dc751", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "84565c5816eeba49622c1ac1b6d8c94c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "370f1d44-c19f-4c09-9bcb-006b35cf6e16", + "apim-request-id": "8b5488e3-c3f9-4ce0-97e5-4a28f5d94e96", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43: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": "2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "lastUpdateDateTime": "2021-08-06T01:43:09Z", - "createdDateTime": "2021-08-06T01:43:08Z", - "expirationDateTime": "2021-08-07T01:43:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e6dbb519b5b4cb28f46af0f469a680d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e80470bc-ae6c-4647-96f8-58defdc47e75", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43: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": "2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "lastUpdateDateTime": "2021-08-06T01:43:09Z", - "createdDateTime": "2021-08-06T01:43:08Z", - "expirationDateTime": "2021-08-07T01:43:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "05acc6a6b8ec80eecfe5207de6405bde", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "213215c1-5fd8-497e-92e1-cc85ce67d50d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:11 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "lastUpdateDateTime": "2021-08-06T01:43:09Z", - "createdDateTime": "2021-08-06T01:43:08Z", - "expirationDateTime": "2021-08-07T01:43:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b25ee768459fa349338b9083255450bb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "50300702-0ab1-4b91-a87c-d104c4f7f66e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:12 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": "2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "lastUpdateDateTime": "2021-08-06T01:43:09Z", - "createdDateTime": "2021-08-06T01:43:08Z", - "expirationDateTime": "2021-08-07T01:43:08Z", + "jobId": "1a1291ae-1017-469c-9536-9635178dc751", + "lastUpdateDateTime": "2021-09-23T14:42:27Z", + "createdDateTime": "2021-09-23T14:42:27Z", + "expirationDateTime": "2021-09-24T14:42:27Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -235,105 +124,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/1a1291ae-1017-469c-9536-9635178dc751", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ef1a49acc42b605fc75a17cf94abe4b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2576658d-5922-4445-82bb-f4adacde4591", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:13 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": "2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "lastUpdateDateTime": "2021-08-06T01:43:09Z", - "createdDateTime": "2021-08-06T01:43:08Z", - "expirationDateTime": "2021-08-07T01:43:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "828c120fcd4861307d09d161286a5a7a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f2139898-7071-49b9-88fc-b3ef3396be4d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43: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": "2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "lastUpdateDateTime": "2021-08-06T01:43:09Z", - "createdDateTime": "2021-08-06T01:43:08Z", - "expirationDateTime": "2021-08-07T01:43:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9cd065946c25a4b287feea442d790e87", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e6dbb519b5b4cb28f46af0f469a680d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58d25938-373f-446f-97dd-b77e33973b5a", + "apim-request-id": "e2faa139-dcfd-4352-8047-05a0314052fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:15 GMT", + "Date": "Thu, 23 Sep 2021 14:42:29 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": "68" }, "ResponseBody": { - "jobId": "2ce5c396-b9c8-4847-95d0-f38cbe8f4845", - "lastUpdateDateTime": "2021-08-06T01:43:15Z", - "createdDateTime": "2021-08-06T01:43:08Z", - "expirationDateTime": "2021-08-07T01:43:08Z", + "jobId": "1a1291ae-1017-469c-9536-9635178dc751", + "lastUpdateDateTime": "2021-09-23T14:42:29Z", + "createdDateTime": "2021-09-23T14:42:27Z", + "expirationDateTime": "2021-09-24T14:42:27Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -344,8 +159,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:15.8340959Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:29.40397Z", "state": "succeeded", "results": { "documents": [ @@ -361,7 +175,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -381,6 +194,6 @@ "Variables": { "RandomSeed": "2064506440", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ 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 index ac8e09c7e206..80314a814843 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "312", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-63d6df81f014d647bdc5103d768271a8-fd0e0688d16b0b49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-48449c990a1f97409bba0d804e4d1d57-492ff669f0b7e84a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff1f44cf0b7d52519f4611a53ca09dbe", "x-ms-return-client-request-id": "true" }, @@ -39,42 +39,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1ab4bc9f-14dd-4606-98c0-8571789df748", - "Date": "Fri, 06 Aug 2021 01:47:52 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", + "apim-request-id": "99253e5d-50ed-41dc-91f4-41c82715f681", + "Date": "Thu, 23 Sep 2021 14:44:36 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d3853c88-9d78-47d7-8749-e689249e8ecc", "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": "217" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d3853c88-9d78-47d7-8749-e689249e8ecc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e5fe6af6690f6491194fc0223b355da1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81678b42-27e2-4be9-8e21-2f42d8d73124", + "apim-request-id": "8197f18d-fe96-4722-af2d-dd4d7451b2ac", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:52 GMT", + "Date": "Thu, 23 Sep 2021 14:44:36 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:53Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", + "jobId": "d3853c88-9d78-47d7-8749-e689249e8ecc", + "lastUpdateDateTime": "2021-09-23T14:44:37Z", + "createdDateTime": "2021-09-23T14:44:37Z", + "expirationDateTime": "2021-09-24T14:44:37Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -87,364 +87,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d3853c88-9d78-47d7-8749-e689249e8ecc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c22721a113540c5c7d4db56795b725e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75ccb84c-d2df-4e98-a36b-eb70f6b5520b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:53Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "notStarted", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c5f8bf9fc78e66c8b2bbe62e4a2e1669", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6dbfe8f0-65d0-44a4-b511-ec4aa0904de0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:55 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1b036fe8da78e36a0df268c1b329cf61", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6fe388af-1412-418b-8d21-6c6e2a140004", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7c83d729973dd91359c00f992c2ec14e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7aedada6-27fc-4f9f-aa81-c6e7cc3acb62", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "257e4b370ab3c4705515b89c5f06b288", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "845e3e46-0651-4afd-9866-ca621bb14821", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" - }, - "ResponseBody": { - "jobId": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "720484eb99ab512c5c2ac1b8cbd1b6df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d9f7e8e4-7e6f-47fa-b1e0-c9cad2e83530", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "688a1930aaab1ead67be2628df767953", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8c7e07ba-74e0-4aad-83fd-7790d1c6b1a0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:00 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a8ad860d4e299da21e2dc98948b7f884", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9478892c-bc33-487d-8123-01640532e1c3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:01 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "466bd85e497b41ddd6e60bec730471e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a7b24bac-bb93-4490-b069-056cf31a84b8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:02 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "45aa6eb00e23e1b576ed497de024d5af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2e63b7e2-c045-4232-be39-e6a8cbfbd5d6", + "apim-request-id": "377200f5-f6a4-417e-925e-f75638456b9d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:03 GMT", + "Date": "Thu, 23 Sep 2021 14:44:38 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", + "jobId": "d3853c88-9d78-47d7-8749-e689249e8ecc", + "lastUpdateDateTime": "2021-09-23T14:44:38Z", + "createdDateTime": "2021-09-23T14:44:37Z", + "expirationDateTime": "2021-09-24T14:44:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -457,1955 +124,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d3853c88-9d78-47d7-8749-e689249e8ecc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "06c9a2c5330ac3d7a86cd14343b52a1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7246a072-aabe-4829-a1a6-226d15db58b9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dad9e3bbb30d50612389cf8e005f60b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6bcddedf-b102-47d7-8d9a-7a8e9a579e98", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "jobId": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d0275b106a3a7cdb96e69cb63c719ec0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5b17518d-d5e5-44b6-947b-168beef71e8b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fcc22fc2fb4a11a24178e3806449c348", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ee1f7433-6a56-4015-93d3-326b719a30d6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e7331f0b598e50df085d442617aa14b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "464628cc-95c3-4918-b5ee-a819d6bf654a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d0cb0eeb639d1567b9158fc1875a184d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2cda22d3-070a-49ff-90ac-91904680786b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:09 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1cab5322b63d69324f71f4edb67bfa97", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f15a1c65-8cbe-40c9-9524-fe687b805c6d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "55953164f37da7aab81e2e79c91dc9ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "77baff1d-03da-4d13-ad95-0e5ba38f0d51", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c304f644f8fe3473dc62802c6f795e3d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0e8e4d52-2b46-42eb-a4f6-b0ef39ab401e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:12 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "555df81ac3c52fd0a903641f87b99f31", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "83cc40f0-a521-421a-b668-7a296279cc60", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:13 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c0a846a837776c98be60781b727e383e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7b239255-849b-42fe-92e0-f8586ba53763", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d15ef1c073c081e826d41afa9354ac23", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "76e89a58-9eaf-4514-9cc4-5e6450e8770b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "28844ec29dd1e3c660f197654ab5bd2a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "800b90bb-5f63-4207-80cb-8a0713736c01", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "965e25cbce5a34715d2799a21d9dd869", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "37b4b360-2cee-4559-b7f3-3c1c73342eba", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "235855b30ffa226d2a7b71cedc833771", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9a64e5d3-7b79-4c03-b9a5-c05a4c17f435", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6d2fef1615f5f4c9dd4fcaa90323c5c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "25c0570c-c3da-4915-bce6-064ade05b2a3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f5b12d189a5cbc30b83c6cdf5da257da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f4b96360-c39d-483b-a70e-a3564c8a3296", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "jobId": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2e8b28ef6a6e9d748c6445aa44c31e06", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "96ca6f7b-b313-471f-aacd-73555172b6d6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "afb6aeb542d17c14bf72b5b9a9e9963a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a9eb5c7b-fec2-4c9e-a635-74a3764c9c74", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dbbaf0f79797ae53b81369f8548577f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f7653438-2384-4c28-8c3c-e681142e15b6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:24 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ae29651da8ecad08130f6efbb5bbf3a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "adc56ee1-adfd-4138-8a70-40f72cea8404", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "54b20bcd43091e6f5a07f6bdd91c2839", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "353e691b-7f6b-4918-82e2-be060d3c6cd0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:26 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "449bbffbe8c04f4de70cc8882858f8fd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "703a9abc-b0f7-47ba-b1a8-b37695eee8c7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "482ac72023d2daecf60a53e5b24ad4f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "86479eab-729f-4b66-8af0-0f8f6b3e0179", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:28 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f50035e7af1fe5e1bd636cfc7be6f502", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1098eede-220e-4c81-a199-500ed32e91ec", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "119df80edff2d767d3c14eb594689c9d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "26ed8fe5-acbe-4ca9-9568-46f54e861169", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:31 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f3a1d137035770dde5448a6eb7ef5f0f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "69c33aca-97b0-4f68-9fde-fe23a8ea1763", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:32 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b9d65014c2ac0704ce29225e612b5055", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "49f6c851-4226-498a-a2a0-7d784907e4dc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:33 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a9c4cfc702450baa1b2d2cad54f81fe4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8d3b93b1-bc70-485a-bb96-b8ab77a790c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:34 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "43a13e62e39275f0cc99252ee17f0fba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "71957c50-c469-4711-b1f2-9d152c2feb65", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "jobId": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e8a735f3b52a12c9a6ca9e7f9656b3d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9b0c2516-b015-4b7e-a069-c3d0226bb017", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "22fc3e090d8ae4c2de4fdcacdd7c2a9c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4b9db4d7-be3a-4267-853e-03e285069636", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "jobId": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1fb9711e3750acb9758f9dc74470de75", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f8d6aacd-e8fd-4fd8-b157-a31275ea633d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "jobId": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a2244fe5ec82e63072c309dbd81d3429", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5fc12b40-9b90-4e9c-9d6f-f1abe4de81e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "246102a0949cd285844fadfa6ffb9f6d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cb968e52-a826-4837-9854-8ba6df944882", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8ec667708757311941d3ac8c2dddd357", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9fa4ac44-dee9-438a-a556-96b963ab5d82", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:41 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4227735aba0f51d9c9521d323f357777", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d3118c47-57b2-45ee-8855-081ab753b3bc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "716b9b24a55618d2e92fe3c9e7f8a4a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6e7eb417-7a86-4d6a-8f74-295defbb43a5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fba0557c5cd3b65e8d74c50469e6f20b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f15dec2a-d210-4ead-8624-fc6ffa973c4f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9268355b6272b400a00f59dfd60f69d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f64a4aa3-667e-4631-a3bd-5c3babd2bef1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e9b676ad7b95c7a33db4e3e2e0ceae02", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "44378b95-0dbf-4234-9388-6778bbc82d4b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:46 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b26dd83d1290193454eb5ac4037edf7e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5c127143-a115-4855-8869-0fd3584a2659", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:47 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f357f40a082fe07691a154bd7e1ed3d2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bca1103b-8242-4cbf-ad40-90daa20bb387", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fea15660b7a19a40429d94a920dfc3be", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2d622f5f-98ec-4027-8355-cdb1a4dd0526", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ecd764d4bb7635d3618d20eebd769a36", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8cd8aee7-691b-445d-b76b-4a19bdf32fb4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:50 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ac638717e1dc53ddb3bcb09273ccbfb2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6b1cdef2-f0f1-42f0-86ae-2f11ffd4f572", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "19e896dde747a45b836c9c139751ddcb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a34596fe-e68c-4191-bf28-8f131dfbcb81", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "98915e02167bf2e1878438ba0a41c195", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ec5d6ae8-f91b-4077-8a84-fdc1b40049da", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "27116dce808d30ee2cbe297045c9bc61", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a76271ba-b11c-4625-9ab4-44fd188d7bef", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "148fe4de263ac637b4f592c3aea09a42", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "920987b8-986f-4288-9cde-6af8be7ba6a6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:55 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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "294506aab540813e70616cbced71adbe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "869e6167-7849-46ba-ba29-88efb3307276", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "25dbd7c8acb1a75a364b7297ee2b828b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0f532eae-2b4b-409c-952e-e7894a971b01", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:47:54Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3ec6e72492832921a60ea4d9b97bd943", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c5f8bf9fc78e66c8b2bbe62e4a2e1669", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "564db057-7a7f-46e9-a246-1f803bfb3f64", + "apim-request-id": "a2b6e9ad-ba10-40fb-a95d-dc6ed3a1ac0a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:58 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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-envoy-upstream-service-time": "80" }, "ResponseBody": { - "jobId": "bd489dd1-82f9-4243-b17c-f21463e9c6f5", - "lastUpdateDateTime": "2021-08-06T01:48:58Z", - "createdDateTime": "2021-08-06T01:47:53Z", - "expirationDateTime": "2021-08-07T01:47:53Z", + "jobId": "d3853c88-9d78-47d7-8749-e689249e8ecc", + "lastUpdateDateTime": "2021-09-23T14:44:40Z", + "createdDateTime": "2021-09-23T14:44:37Z", + "expirationDateTime": "2021-09-24T14:44:37Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -2416,8 +159,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:48:58.5944764Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:44:39.9961088Z", "state": "succeeded", "results": { "documents": [ @@ -2433,7 +175,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -2453,6 +194,6 @@ "Variables": { "RandomSeed": "915431106", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActions.json index b15f22740041..0c5f4bf6e483 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActions.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActions.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "624", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c8bf24b31fcb4c45902a23397541d4e4-db59645e0063e04d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d282e78742d46a40b0c9940c4adb2c41-1ae253e3ba380f47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da9c404f19269b117394a823858b72a9", "x-ms-return-client-request-id": "true" }, @@ -67,42 +67,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e78b48a5-2fa8-4c1c-893b-5ea6c9d86c47", - "Date": "Fri, 06 Aug 2021 01:43:16 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "apim-request-id": "5692f5f9-10dd-48dd-8dce-1d60bf04d6cd", + "Date": "Thu, 23 Sep 2021 14:42:29 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "639" + "x-envoy-upstream-service-time": "513" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9abcf455d5282fa542e4f94ff79d2572", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09d491d8-a4ea-42f9-9809-1a397a8987bf", + "apim-request-id": "a9fc6e74-7410-42e1-ae46-cd3a66694066", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:16 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "11" }, "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:17Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", + "jobId": "8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "lastUpdateDateTime": "2021-09-23T14:42:30Z", + "createdDateTime": "2021-09-23T14:42:29Z", + "expirationDateTime": "2021-09-24T14:42:29Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -115,9825 +115,84 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38769894a9ad45aa2d9e6112ab005942", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1c8fe3c-f688-4ad9-91bc-460551719d6a", + "apim-request-id": "484034ad-2a4b-4188-bb3e-9df20e364b87", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:18 GMT", + "Date": "Thu, 23 Sep 2021 14:42:31 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": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:18Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "95624054e5857ada9b6d97411fc2a4d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "55f0df8a-a7aa-4458-83b6-8d47a8f9bed5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:19 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": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:18Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ec8e366f3914acfc49776d8a73938342", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8ae8fe60-7bc0-4fd4-92a4-70a44d0b2ac3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:20 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": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:18Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b6fbb78b8f3aaeedbdfc9d401268266b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "844b9869-f220-4b92-bfaf-89af73835373", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:18Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "75a38bf96c711b2e44b64b0e78500608", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b1fdc30a-2b5a-40ea-8f09-0b4f7cf30b45", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:22 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": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:18Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "68b655e9eec6df9b48df2f189bbc99e0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f7a3e917-76fa-4cb3-ad38-b050d5a97318", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43: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": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:18Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e89101500eef1ed088e0728344df366d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b772e398-17bc-4dc5-b1fa-989a4d0dee31", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:24 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "144" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bc5695f5beb20ba4efc32c913d157f88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a0121d71-cea3-4cd5-868e-ecd2cba08f29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "122" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "77bd6a1c1dbfdb188597dfe67c179b68", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1951335e-bd6e-4a37-9184-24fd765f1338", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "129" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0522c1a9dc65922d5c85f92ce13ee173", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f80b2c1c-2c28-4406-9486-ed6a9e69c207", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "276" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d966e960bf22d7ad7d7b371bdfbe8fd7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c948a168-877b-4aa0-bb9f-ee072e8a4744", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "126" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7be8c42879f240223c2b1a3924ebf946", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4d018e44-a8b6-42d5-8b57-c39261be094d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "120" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "92856cb6c2b0ea46134b88eaa512b29e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "44a66e3e-4bc9-4029-b286-e083032d9ace", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "111" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1d0421f66556e780c6269cf6a474b291", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "90dd30a6-0f8d-4c85-9f7e-9c0d1f8d54aa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "123" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7364f182fc3866277dfd67a7f1389a2a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "28d0680b-d032-4eaa-b685-6a325608979e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "123" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "03427c78dbe751f0eb9ecb892550469f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "76bb66ac-d9f4-4b2b-afe0-2c899bba54ff", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "123" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b367f6983fadfa65f99da058fdd9f58d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "80fb34f6-8db2-45ec-919a-9f9df6658b23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "134" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "287d728caf32a6a900138799319d402d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f03265fb-4eb2-4fdb-971d-a32526933cb2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "111" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fa0ec8b7e7d1387c164809493b975312", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2d1de503-00e8-4f31-9d28-913f97581833", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "120" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b3fd3da81dd2e96d4dc1b39ab8cbc95c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c78d4e9e-1d55-4ebc-a0ce-cdf1dbb8ce88", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "130" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "35a1725dfbcaa5bcf54412e9a55f6b69", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8e754efb-4aa1-46ff-8623-f0c451510c45", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "171" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f3f174c08c9f995b5b24ad1034e2804a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6c12400b-923e-4442-9c63-15a6571985db", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "111" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c8ecad7f1df5ad478058be8d0b8344ed", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "33ea1e8b-32fc-4092-bd83-dd75da92f693", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:42 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "43d94955d5dad0bc1707daa64eac7113", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "72dd2344-96ef-491e-a549-c86ceebd1497", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "105" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f86ac7c4a273a2732d447247cece8ed7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fc369e81-6041-4b29-b41c-79ea04b0ecc0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:45 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "129" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eababfe03c08a96ff01bb1ee43a15ed4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b7e36928-36a9-4117-8b7a-467aa0a3f1c3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "43c8abe74b18b37ad537169663750248", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "de97d08a-7ee7-4353-88b2-7cb5eab8e90b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "261" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8ec5027986f2870a57c10757f0855e8b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "354ec5c8-30c9-4431-91be-9fd4674be29b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "189" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "235f9ee54a0594bf450614d126d9457b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0163a72d-5298-4659-b4e7-68adbaab41c5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "157" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "41746818d0db61e1a040ec564422c350", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d307f0ba-a64f-4d18-8c89-6f6ebb811f5f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "194" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c4b18ad8df152e43423148ec7138617d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f381ff4c-c171-43a5-8631-e6a02f4b98e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "184" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "873e8b7b1d1014b0bcfe82c45e684f23", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e90d6653-fb6a-4fb7-bf72-ff373d3711fd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "174" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9cf9c442812839662545fea988f5ef68", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "be209200-84ab-47eb-a422-a3c2930a7de2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "180" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b8db6edf3be3ba3fda9c07165d7ed0da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d78ea804-a48f-4fda-a3d9-edb362c8b3bb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "191" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ada925e1c53ffa55250561ca1e068cc7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "486d3645-3221-4ede-b95e-e1f4658012a2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "160" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "efe41a0f978d0740853ec18c794fdca6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "04f395bd-d5fa-4918-9dd1-81ef01f4c832", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "212" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "62c82475424b1a2918e093ddd9749bd3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3b23248e-2ea0-4cd8-b35f-7411f7601402", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "162" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4307400fe0994a4ce4a2270003c981d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "16cf646c-3eaf-404b-b304-6c3b530fed58", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "276" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fa55bb29293ecd7bf1cad7ac04622d10", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fe043316-5b04-4330-8bf8-f7427d246806", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "208" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "397ceea39847940cd77d7ea91a28174f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3bce3451-ea3a-4500-b91e-e84b310bef75", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:03 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "277" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1eb4bc5fa11ee595c43a52cf09a04682", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f2cc99cb-5079-45ce-a492-583f39c7aa70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "159" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "155d1675474c908eaec022c1abd2b2c8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "96358062-81de-4479-88dd-dfa0ef9c3b1c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "191" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "474c87b20eae01f25896740d463d8b37", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b8fd5afb-4d15-4871-9fdb-b2edc1298760", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "168" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0334fb3602cb17032e23705d7ed43af2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "070c3b7d-6f49-4264-aacb-cd01903964a3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "174" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "821d8988ff5366d4245bbcb5d2814a71", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b2af872f-c4d6-4a8e-979c-84a265bbbc20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "155" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b08aeb35ae9db0fc8434198a9d948384", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "22c78321-2247-44f2-a4e7-474ce22de2c4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "169" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bc85825c091f37e327cddf70454d45ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ab7bb859-0891-4f34-96bd-1e16d656c84b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "180" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9327ffd98949d9548d6cfd1fe649c88f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2ae847f2-b85b-4399-bf6f-6f425a4f68ea", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "218" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "505837d88dfc2c51075388cfcf8c6a36", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "695487d9-3f56-43fd-a111-ec19ab978040", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "168" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9eb16cefef6cd23a2dab2fb20bc450dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1bd4fd69-0814-4347-b058-2f6a66c39dcd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "186" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:47Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0e974f05f4f44bb0adfb8cf601850900", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2a94ed62-28bd-4732-a250-cd76c1aad210", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "174" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:17Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "792fc6022997e923fc8522505e9e2142", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a5ef3cbb-44d4-460c-8529-4489be13ec8e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "185" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:17Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "80caab025cf5fa42bc66f1716344d1a8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "878558fe-1bb7-410c-a5df-a76f5ca78a50", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "153" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:17Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "44b02fa2d795db452bae116ed25fed0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b1cdf49c-af49-4971-96a5-d52222249e09", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "307" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:17Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "55f449da88bba60a8434bd3138b285b8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6b94a8a-52d9-4cb9-a422-0041b850c892", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "224" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:22Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2ead7ab3dcee2bad65ef54464ad3285c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3fc35f3a-6055-47d8-8a53-f6e81df2ad62", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:24 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "279" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:22Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1997e2787b4f1aed2409c0601914a279", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0b8b2f1a-c2a3-404d-aefe-1a2f96468fc2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "311" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:22Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "58bb5828beb2fd209cc9f0cb33c45bb1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8c238747-4f95-47b9-8e8f-707131f52abd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "244" - }, - "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:22Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "lastUpdateDateTime": "2021-09-23T14:42:30Z", + "createdDateTime": "2021-09-23T14:42:29Z", + "expirationDateTime": "2021-09-24T14:42:29Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 5, + "total": 5 } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "56b8610c6c1a37688c930ae41c4c1151", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "95624054e5857ada9b6d97411fc2a4d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3071a30c-8636-44bc-bdc3-426ff30b9959", + "apim-request-id": "4740cd31-0ee8-4842-8bb1-3d133122319e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:28 GMT", + "Date": "Thu, 23 Sep 2021 14:42:32 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": "158" }, "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:22Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", + "jobId": "8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "lastUpdateDateTime": "2021-09-23T14:42:32Z", + "createdDateTime": "2021-09-23T14:42:29Z", + "expirationDateTime": "2021-09-24T14:42:29Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 4, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 4, "total": 5, - "entityRecognitionTasks": [ + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:42:32.620207Z", "state": "succeeded", "results": { "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -9941,7 +200,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 1.0 + "confidenceScore": 0.97 }, { "text": "Bill Gates", @@ -9955,12 +214,13 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 1.0 + "confidenceScore": 0.99 } ], "warnings": [] }, { + "redactedText": "Mi perro y mi gato tienen que ir al ***********.", "id": "2", "entities": [ { @@ -9968,21 +228,57 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2021-01-15" } } - ], + ] + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ec8e366f3914acfc49776d8a73938342", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "70eecd98-dce7-4ebe-917e-96c236bc42f0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:42:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "140" + }, + "ResponseBody": { + "jobId": "8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "lastUpdateDateTime": "2021-09-23T14:42:33Z", + "createdDateTime": "2021-09-23T14:42:29Z", + "expirationDateTime": "2021-09-24T14:42:29Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:32.620207Z", "state": "succeeded", "results": { "documents": [ @@ -10034,42 +330,9 @@ } } ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:42:33.0657354Z", "state": "succeeded", "results": { "documents": [ @@ -10129,96 +392,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f11edb4cd018baaac1997d868b21e660", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b6fbb78b8f3aaeedbdfc9d401268266b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72011636-7c46-436a-b33d-3ebbd6f22e9c", + "apim-request-id": "321ca412-b608-40bd-9802-ececa35a00a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:29 GMT", + "Date": "Thu, 23 Sep 2021 14:42:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "244" + "x-envoy-upstream-service-time": "143" }, "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:22Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", + "jobId": "8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "lastUpdateDateTime": "2021-09-23T14:42:33Z", + "createdDateTime": "2021-09-23T14:42:29Z", + "expirationDateTime": "2021-09-24T14:42:29Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 4, + "completed": 2, "failed": 0, - "inProgress": 1, + "inProgress": 3, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:32.620207Z", "state": "succeeded", "results": { "documents": [ @@ -10266,46 +475,13 @@ } ], "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2021-01-15" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:42:33.0657354Z", "state": "succeeded", "results": { "documents": [ @@ -10365,96 +541,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b7540fad4b5bbc5ef083cb1eb43be14f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "75a38bf96c711b2e44b64b0e78500608", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ff5dd20-721b-4691-a8a9-e04566046b84", + "apim-request-id": "1a34d051-5a5d-4d97-972a-53d4a208bbfd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:30 GMT", + "Date": "Thu, 23 Sep 2021 14:42:36 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": "233" }, "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:22Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", + "jobId": "8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "lastUpdateDateTime": "2021-09-23T14:42:36Z", + "createdDateTime": "2021-09-23T14:42:29Z", + "expirationDateTime": "2021-09-24T14:42:29Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 4, + "completed": 2, "failed": 0, - "inProgress": 1, + "inProgress": 3, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:32.620207Z", "state": "succeeded", "results": { "documents": [ @@ -10506,42 +628,9 @@ } } ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:42:33.0657354Z", "state": "succeeded", "results": { "documents": [ @@ -10601,96 +690,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "587f9fb76aa53b99b7fe9481efe2ac6b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "68b655e9eec6df9b48df2f189bbc99e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "89035358-724a-4ab6-8e24-570351a699ba", + "apim-request-id": "e5c560f8-d2e4-45ac-9fdf-595bdd6d5001", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:33 GMT", + "Date": "Thu, 23 Sep 2021 14:42:37 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": "150" }, "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:22Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", + "jobId": "8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "lastUpdateDateTime": "2021-09-23T14:42:36Z", + "createdDateTime": "2021-09-23T14:42:29Z", + "expirationDateTime": "2021-09-24T14:42:29Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 4, + "completed": 2, "failed": 0, - "inProgress": 1, + "inProgress": 3, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:32.620207Z", "state": "succeeded", "results": { "documents": [ @@ -10742,42 +777,9 @@ } } ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:42:33.0657354Z", "state": "succeeded", "results": { "documents": [ @@ -10837,31 +839,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0c37a9ac5af801f57c610194058b0586", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e89101500eef1ed088e0728344df366d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d606220-0b5d-4466-a483-94319c9a6062", + "apim-request-id": "326c99e2-9e2e-46d5-a783-ca7b9eeb3a00", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:34 GMT", + "Date": "Thu, 23 Sep 2021 14:42:39 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": "323" }, "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:22Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", + "jobId": "8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "lastUpdateDateTime": "2021-09-23T14:42:38Z", + "createdDateTime": "2021-09-23T14:42:29Z", + "expirationDateTime": "2021-09-24T14:42:29Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -10870,10 +872,9 @@ "failed": 0, "inProgress": 1, "total": 5, - "entityRecognitionTasks": [ + "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:42:38.2749246Z", "state": "succeeded", "results": { "documents": [ @@ -10881,52 +882,82 @@ "id": "1", "entities": [ { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 + "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" }, { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 25, + "length": 10, + "confidenceScore": 0.52 + } + ], + "language": "en", + "id": "Bill Gates", + "url": "https://en.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" }, { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 40, + "length": 10, + "confidenceScore": 0.54 + } + ], + "language": "en", + "id": "Paul Allen", + "url": "https://en.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" } ], "warnings": [] }, { "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], + "entities": [], "warnings": [] } ], - "errors": [], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid Language Code.", + "innererror": { + "code": "UnsupportedLanguageCode", + "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" + } + } + } + ], "modelVersion": "2021-06-01" } } ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:32.620207Z", "state": "succeeded", "results": { "documents": [ @@ -10980,8 +1011,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:38.4546002Z", "state": "succeeded", "results": { "documents": [ @@ -10997,7 +1027,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -11012,8 +1041,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:42:33.0657354Z", "state": "succeeded", "results": { "documents": [ @@ -11073,31 +1101,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8e6be3ec-355d-4438-8c6a-1d7f90180e8c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ebcf2db88ea243ba7618005cb6ddcc0d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc5695f5beb20ba4efc32c913d157f88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0334e566-e6d4-4ab1-b894-1ed448b107e1", + "apim-request-id": "53f7402a-d55e-48a4-9622-ad51f10db330", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:35 GMT", + "Date": "Thu, 23 Sep 2021 14:42:40 GMT", "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": "353" }, "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:44:34Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", + "jobId": "8e6be3ec-355d-4438-8c6a-1d7f90180e8c", + "lastUpdateDateTime": "2021-09-23T14:42:39Z", + "createdDateTime": "2021-09-23T14:42:29Z", + "expirationDateTime": "2021-09-24T14:42:29Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -11108,8 +1136,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:42:39.6743383Z", "state": "succeeded", "results": { "documents": [ @@ -11161,8 +1188,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:34.6428612Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:42:38.2749246Z", "state": "succeeded", "results": { "documents": [ @@ -11245,8 +1271,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:42:32.620207Z", "state": "succeeded", "results": { "documents": [ @@ -11300,8 +1325,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:38.4546002Z", "state": "succeeded", "results": { "documents": [ @@ -11317,7 +1341,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -11332,8 +1355,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:42:33.0657354Z", "state": "succeeded", "results": { "documents": [ @@ -11396,6 +1418,6 @@ "Variables": { "RandomSeed": "294889338", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActionsAsync.json index ed1d1f78c715..972c4cf6036f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActionsAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActionsAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "624", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1961e898de87be44ad5323ac705f5168-717f1ff4e2b8bc46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-06ae1f9d8d1a354ab9500063cadbca58-28249c9df44aa649-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "89d8b003187a4095bbbb24fbfe84af54", "x-ms-return-client-request-id": "true" }, @@ -67,10567 +67,164 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "48d5d2b8-0812-4f5e-a16e-6399821e42e7", - "Date": "Fri, 06 Aug 2021 01:48:59 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "apim-request-id": "a5d99aff-92f9-4c8b-a80e-594e2db407bd", + "Date": "Thu, 23 Sep 2021 14:44:40 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "400" + "x-envoy-upstream-service-time": "482" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2855ecc1615ff9546357ae19534c50d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8baef123-01f3-41de-a990-264ac7067aa7", + "apim-request-id": "e4e27c89-ba9e-46e7-acd8-2223e492b83e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:59 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": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:00Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "notStarted", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "49705b3bf552a68f1ed902bccb13384a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c4926e8f-d793-4d21-9bda-0c1df830360a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49: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": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:00Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b846e7be8ec5a1535bdf25226a7ced6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0c51b0d2-a531-4cd3-a5fd-6e7ccfeac466", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49: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": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:01Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a3bf4c6a6514cb015cae0a855f982e50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "74482e5b-584b-4fea-8428-5e4671f800d4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:03 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": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:01Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6b5a641f9805ac1307ceee72d06c3ca1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "37508ca4-7ab4-4515-840b-ca271c913045", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:04 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:01Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7e5192ec94535835e57a5b1684cd42c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9d920867-f9e3-47ca-bf45-82cd66c17292", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49: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": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:01Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0603d5b18121d26939129b46778efbf0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "731a3832-51e2-418b-ab6a-bef4869d9a95", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:06 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": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:01Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", + "jobId": "b2bf84fd-897b-4b83-9294-26e5265fecc8", + "lastUpdateDateTime": "2021-09-23T14:44:40Z", + "createdDateTime": "2021-09-23T14:44:40Z", + "expirationDateTime": "2021-09-24T14:44:40Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { "completed": 0, "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cc996972af478afc2e02868b3dfc283a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "65f7c595-ce50-452f-8350-9f0a9bfc4770", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "146" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:06Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fbc12b8b36696a80287e4541f9efe156", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f7d8071a-be8c-46c0-af47-66d272555789", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "154" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:06Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1aa46a7f7634017bd878d71ffade953c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1bac9f0e-31c0-456e-bbb5-5fb9edcc27df", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "155" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:06Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4bba61eaffcd3c86e82ea4c86abb913e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f9f89184-897f-4ebb-895d-3d60988102a9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "130" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:06Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d20c30200d581505b0c022f05e616f4a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e4f8812b-2ee9-4c94-90a7-dc182dec54e2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "205" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:06Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "975708e996357f89e4673105d1b2971d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "801da716-3d41-4c79-baa3-3e89dc6d099d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "114" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:06Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cafe98e7c2d2dce45ba49a0cdd95dd87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2d07e3b0-0f11-4650-9285-afc6d7ff1b8b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "175" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "62df5abff9648a09a68ceef0db0043fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d4678015-111f-4f16-b16d-4d48e4ddcba8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "348" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c5090529a5622777247a3b90fb7ca24e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "37562f2c-a7d8-4063-a06b-1a08577e307f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "167" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7746aa8a34d3edb88f732345d4f3005b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "39963180-7127-4f34-8ea7-c0295bf8a668", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49: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": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d7e39b60188c1a24e2b83de9be788e2a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d6a0d988-3733-4c24-b877-acddc61a702a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "159" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3166a0eaccbaf42b4c1c36ef81325230", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bd2504ba-a054-402c-9dfa-16578699f38d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "171" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5f30e07aca9872c1852c951bf7cf2f16", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "913b32f7-1a60-495a-a6dd-540ee199aab0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "195" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "335af9e4ce8c94a070ef8a6fe13598af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ece082b4-09ac-4510-8717-b186f1696746", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "151" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dd6e0d652e481f92def4ac8e360ffd7d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "01b8df9a-adce-4f09-b5d4-e8c665e5bf89", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:24 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "182" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "870a20ed1ed7aca3409befa84052904f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d1d8b421-7bc1-4057-bc5a-90931e791faa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "209" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eab6e6935160b6ce673b559821125e60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "aac6fe19-a224-477f-b6eb-ebe8f353accf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "162" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c1820df2102a46d769c29cac3fe9df8c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b308341c-fca4-459e-a527-f8f8bf294411", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "207" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "50fb5d6412599b1c5154209cc90b8b2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2f17b4f8-ec67-4789-907c-d807938e6d3b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "151" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "32b68e3dcfcf82240e6f809eb522767d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ba5d99b2-7c6d-4426-98c1-eb8432714dc1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "165" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c434c95b0d16df06f1e66fd6f03b7c5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cc82f3a7-ef7a-4d11-9b82-55d51568db18", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "184" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b16e6e37ac3295bc387842ea927de62f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8148a9df-00a1-4868-ad05-6b56b499a2d1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "187" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0040a3ddc7d7301787d640e95f4e92d2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7be2454c-549a-4338-9412-6c5140c62beb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "160" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "466722f3c5b4ae4a0c9f8b9dcb1c4d73", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1c9cd344-900a-419c-a3d9-e97697524850", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "184" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4cf840007cfa7086573d295c6cd335ea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0050fba7-295c-4440-93c3-2c4476a25d97", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "169" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:13Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6ff76fe69f16187b5891f3373b79656a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "207276ca-d682-4a68-ac48-37291b180512", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "257" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1ee8cd89455576d89bf7ef769bee4239", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "66bde466-8fba-424f-8e43-b0b14cf1404b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "204" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5bb7a169de25615dc5e0f469884f34dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5197f195-6e14-4101-98e7-c0aab2779732", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "418" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9ed2bed817eaa1949780d31eaf057c69", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e789be8c-cbde-408d-87d3-5c7a50765938", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "224" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9aceba4e09c2aa456f875975516eee4c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0702e81f-e2d2-4743-8e0b-c906afb6b223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "270" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dd9d11c2a41b524e0c15c4a50b3eb1bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6d2ea629-5770-4605-9851-b3687f573ccd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:44 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "519" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cd1a8a639a81cf1b79272e63bd1f5028", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9bdb2bf9-8e2a-415a-8437-9312dcdc117c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "216" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9d5c86929f67aa4d6c7b8dac449f9f31", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b6ee0510-7e93-4b5a-8043-2d9f446ec9dd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "235" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c61299d6205428cbf6cd63f375ea95ed", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4c2d8844-9611-44c6-b7fe-56607fef62d8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "272" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "84139cc513e2c3583c6f61050c6f8bd9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ec35a604-7e18-4d2a-abb0-fae764f5b02a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "279" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "238dfd87890d71d3bb33a79a3c593581", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3996302d-c57c-40bc-84cd-135d8a11c173", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "221" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a8e6a0e61b8cc24f414e89e5bec61c87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "51291c6d-e492-4c5b-9042-2bfc5f28456c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "329" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "776c8942715d3be0c8a1c9ae6bbd87e2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3f307c97-fede-4ece-9ce8-557cbeba7814", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "217" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6b1ee039e2886c4caecae1be00eeb2f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6af18199-244d-4eed-b45a-375aa18d3da5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "215" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b2572017bded7523c0abdfeb52a05783", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f2c76560-c43e-4dcb-8f99-96762c27a748", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "233" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "deaba7c6b0a75ffe3cffc9928f213bda", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2bc07336-5315-4d19-a82e-c06dbdcc7200", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "280" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4b97d4eed4657bf4bca9abdd03611a0d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "87846f51-daf9-44d4-a425-08532dfb5fc1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "235" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:38Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* was founded by ********** and **********.", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.97 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.99 - } - ], - "warnings": [] - }, - { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - } - ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." - } - ], - "warnings": [] - }, - { - "id": "2", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ - { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "offset": 0, - "length": 48, - "text": "Mi perro y mi gato tienen que ir al veterinario." - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "58f85d73d442674d21f876eef490e59e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4275e049-a905-4cc1-a630-f4b6995b7cf0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "343" - }, - "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:50:00Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "completed": 4, - "failed": 0, - "inProgress": 1, - "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", - "state": "succeeded", - "results": { - "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", - "matches": [ - { - "text": "Bill Gates", - "offset": 25, - "length": 10, - "confidenceScore": 0.52 - } - ], - "language": "en", - "id": "Bill Gates", - "url": "https://en.wikipedia.org/wiki/Bill_Gates", - "dataSource": "Wikipedia" - }, - { - "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } - ], - "language": "en", - "id": "Paul Allen", - "url": "https://en.wikipedia.org/wiki/Paul_Allen", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid Language Code.", - "innererror": { - "code": "UnsupportedLanguageCode", - "message": "Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition" - } - } - } - ], - "modelVersion": "2021-06-01" - } - } - ], + "inProgress": 5, + "total": 5 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "49705b3bf552a68f1ed902bccb13384a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b1c8c5d2-b364-41d5-b04c-956fba113e00", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:41 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": "b2bf84fd-897b-4b83-9294-26e5265fecc8", + "lastUpdateDateTime": "2021-09-23T14:44:41Z", + "createdDateTime": "2021-09-23T14:44:40Z", + "expirationDateTime": "2021-09-24T14:44:40Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 5, + "total": 5 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b846e7be8ec5a1535bdf25226a7ced6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "71889445-8899-4d8d-ac8c-a647364c213e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:43 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": "b2bf84fd-897b-4b83-9294-26e5265fecc8", + "lastUpdateDateTime": "2021-09-23T14:44:41Z", + "createdDateTime": "2021-09-23T14:44:40Z", + "expirationDateTime": "2021-09-24T14:44:40Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 5, + "total": 5 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a3bf4c6a6514cb015cae0a855f982e50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6a6928f8-4f10-4577-a75c-93a58a84e4a8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" + }, + "ResponseBody": { + "jobId": "b2bf84fd-897b-4b83-9294-26e5265fecc8", + "lastUpdateDateTime": "2021-09-23T14:44:44Z", + "createdDateTime": "2021-09-23T14:44:40Z", + "expirationDateTime": "2021-09-24T14:44:40Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:44.005246Z", "state": "succeeded", "results": { "documents": [ @@ -10681,8 +278,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:43.2697274Z", "state": "succeeded", "results": { "documents": [ @@ -10742,96 +338,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7dfc056f0b09f11eb22f21fe04215cdb", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b5a641f9805ac1307ceee72d06c3ca1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00b841e8-e9e7-43f5-a98d-98f02080bf80", + "apim-request-id": "2afb6a2d-16da-4ada-9703-db0646e9b0b0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:02 GMT", + "Date": "Thu, 23 Sep 2021 14:44:45 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": "220" }, "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:50:00Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", + "jobId": "b2bf84fd-897b-4b83-9294-26e5265fecc8", + "lastUpdateDateTime": "2021-09-23T14:44:45Z", + "createdDateTime": "2021-09-23T14:44:40Z", + "expirationDateTime": "2021-09-24T14:44:40Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:45.3222217Z", "state": "succeeded", "results": { "documents": [ @@ -10914,8 +456,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:44.005246Z", "state": "succeeded", "results": { "documents": [ @@ -10969,8 +510,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:43.2697274Z", "state": "succeeded", "results": { "documents": [ @@ -11030,96 +570,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "311fbbe4e22919978730296d5e06872c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7e5192ec94535835e57a5b1684cd42c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fd4a295-8aa5-42d3-ac45-99d297a33b3d", + "apim-request-id": "2024c75e-ad8d-49dd-85e8-844d9fc3b1d7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:03 GMT", + "Date": "Thu, 23 Sep 2021 14:44:47 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": "189" }, "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:50:00Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", + "jobId": "b2bf84fd-897b-4b83-9294-26e5265fecc8", + "lastUpdateDateTime": "2021-09-23T14:44:46Z", + "createdDateTime": "2021-09-23T14:44:40Z", + "expirationDateTime": "2021-09-24T14:44:40Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:45.3222217Z", "state": "succeeded", "results": { "documents": [ @@ -11202,8 +688,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:44.005246Z", "state": "succeeded", "results": { "documents": [ @@ -11257,8 +742,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:43.2697274Z", "state": "succeeded", "results": { "documents": [ @@ -11318,96 +802,42 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fd6e0cc39d6467043f06a613b34f6200", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0603d5b18121d26939129b46778efbf0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14545a63-e37d-47fa-a702-216058ec44c1", + "apim-request-id": "ca262429-100c-4574-886e-e1f25abd90e7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:05 GMT", + "Date": "Thu, 23 Sep 2021 14:44:48 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": "206" }, "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:50:00Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", + "jobId": "b2bf84fd-897b-4b83-9294-26e5265fecc8", + "lastUpdateDateTime": "2021-09-23T14:44:46Z", + "createdDateTime": "2021-09-23T14:44:40Z", + "expirationDateTime": "2021-09-24T14:44:40Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 1.0 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 1.0 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 1.0 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2021-06-01" - } - } - ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:45.3222217Z", "state": "succeeded", "results": { "documents": [ @@ -11490,8 +920,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:44.005246Z", "state": "succeeded", "results": { "documents": [ @@ -11545,8 +974,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:43.2697274Z", "state": "succeeded", "results": { "documents": [ @@ -11606,31 +1034,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "39099a9bb3718c756ee3f6d9e2b093ab", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc996972af478afc2e02868b3dfc283a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d6e43c4-721d-45cb-b0ec-c8983f63fc3d", + "apim-request-id": "434cbc84-f28f-4fa1-abd6-996f817c659f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:06 GMT", + "Date": "Thu, 23 Sep 2021 14:44:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "350" + "x-envoy-upstream-service-time": "337" }, "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:50:00Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", + "jobId": "b2bf84fd-897b-4b83-9294-26e5265fecc8", + "lastUpdateDateTime": "2021-09-23T14:44:48Z", + "createdDateTime": "2021-09-23T14:44:40Z", + "expirationDateTime": "2021-09-24T14:44:40Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -11641,8 +1069,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:44:48.9681809Z", "state": "succeeded", "results": { "documents": [ @@ -11694,8 +1121,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:45.3222217Z", "state": "succeeded", "results": { "documents": [ @@ -11778,8 +1204,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:44.005246Z", "state": "succeeded", "results": { "documents": [ @@ -11833,8 +1258,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:43.2697274Z", "state": "succeeded", "results": { "documents": [ @@ -11894,31 +1318,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/b2bf84fd-897b-4b83-9294-26e5265fecc8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f73af4a85fb24776b6b7f2233c846537", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fbc12b8b36696a80287e4541f9efe156", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64e9a862-5704-4139-b7e4-f01c68dd4db4", + "apim-request-id": "5c1d2d16-64ac-4d78-a060-bbd010467503", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:07 GMT", + "Date": "Thu, 23 Sep 2021 14:44:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "292" + "x-envoy-upstream-service-time": "395" }, "ResponseBody": { - "jobId": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:50:06Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", + "jobId": "b2bf84fd-897b-4b83-9294-26e5265fecc8", + "lastUpdateDateTime": "2021-09-23T14:44:49Z", + "createdDateTime": "2021-09-23T14:44:40Z", + "expirationDateTime": "2021-09-24T14:44:40Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -11929,8 +1353,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-09-23T14:44:48.9681809Z", "state": "succeeded", "results": { "documents": [ @@ -11982,8 +1405,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-09-23T14:44:45.3222217Z", "state": "succeeded", "results": { "documents": [ @@ -12066,8 +1488,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:44:44.005246Z", "state": "succeeded", "results": { "documents": [ @@ -12121,8 +1542,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:50:06.563776Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:44:49.9444774Z", "state": "succeeded", "results": { "documents": [ @@ -12138,7 +1558,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -12153,8 +1572,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-09-23T14:44:43.2697274Z", "state": "succeeded", "results": { "documents": [ @@ -12217,6 +1635,6 @@ "Variables": { "RandomSeed": "1928146711", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPHIDomainAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPHIDomainAsync.json index 51db3819a8ea..b172224061d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPHIDomainAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPHIDomainAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "320", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-32391618d706794a9841a80d14cd49f5-f0b2b82c5b090448-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ed1720388ae7bd4599cea57e97377651-9c524b563b1c204b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dbcf75b1d6cb24fdb41d742a5d142b0a", "x-ms-return-client-request-id": "true" }, @@ -37,42 +37,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "638afe26-0c7f-44d7-bc7a-2cd3c1ae8f14", - "Date": "Fri, 06 Aug 2021 01:51:17 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "apim-request-id": "c8f3c347-0bdf-490f-9fbd-1ca410ce8bf2", + "Date": "Thu, 23 Sep 2021 14:45:02 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", "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": "187" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4c8042efa9b72511ebff89e389aea38e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75275065-d4e7-41f8-8acf-6d2a9f626b2c", + "apim-request-id": "74a4f217-9280-4b58-b42c-00a4fdcb3b2c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:17 GMT", + "Date": "Thu, 23 Sep 2021 14:45:02 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": "0b3776f4-e5d3-4162-8512-f00f820ceb6a", - "lastUpdateDateTime": "2021-08-06T01:51:17Z", - "createdDateTime": "2021-08-06T01:51:17Z", - "expirationDateTime": "2021-08-07T01:51:17Z", + "jobId": "a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "lastUpdateDateTime": "2021-09-23T14:45:02Z", + "createdDateTime": "2021-09-23T14:45:02Z", + "expirationDateTime": "2021-09-24T14:45:02Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -85,31 +85,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d874985d95266ebb9878278edaa670b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f51e65bd-cb33-4827-9b2f-df6c7fdab0b8", + "apim-request-id": "65bb8b9e-e9f1-47f1-a540-3289d0a5f3d0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:18 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "0b3776f4-e5d3-4162-8512-f00f820ceb6a", - "lastUpdateDateTime": "2021-08-06T01:51:17Z", - "createdDateTime": "2021-08-06T01:51:17Z", - "expirationDateTime": "2021-08-07T01:51:17Z", + "jobId": "a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "lastUpdateDateTime": "2021-09-23T14:45:03Z", + "createdDateTime": "2021-09-23T14:45:02Z", + "expirationDateTime": "2021-09-24T14:45:02Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -122,31 +122,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75458861a56107e864a9f0cb4c199a06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61621dac-6de4-49ff-b8f8-4bc2aea23b3f", + "apim-request-id": "5fad487d-fb05-43f6-944c-ca3f41c65af7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:19 GMT", + "Date": "Thu, 23 Sep 2021 14:45:05 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": "0b3776f4-e5d3-4162-8512-f00f820ceb6a", - "lastUpdateDateTime": "2021-08-06T01:51:17Z", - "createdDateTime": "2021-08-06T01:51:17Z", - "expirationDateTime": "2021-08-07T01:51:17Z", + "jobId": "a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "lastUpdateDateTime": "2021-09-23T14:45:03Z", + "createdDateTime": "2021-09-23T14:45:02Z", + "expirationDateTime": "2021-09-24T14:45:02Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -159,31 +159,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c4cce67952a059e38711b33f82834b45", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "301a281c-86b2-4309-a91b-6a008200bbe9", + "apim-request-id": "2568b744-ea85-4411-ae5f-717f040e8d6d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:20 GMT", + "Date": "Thu, 23 Sep 2021 14:45:06 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": "0b3776f4-e5d3-4162-8512-f00f820ceb6a", - "lastUpdateDateTime": "2021-08-06T01:51:17Z", - "createdDateTime": "2021-08-06T01:51:17Z", - "expirationDateTime": "2021-08-07T01:51:17Z", + "jobId": "a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "lastUpdateDateTime": "2021-09-23T14:45:03Z", + "createdDateTime": "2021-09-23T14:45:02Z", + "expirationDateTime": "2021-09-24T14:45:02Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -196,31 +196,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0182d08f2e68b82daf6c747ca5ef217e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd63ed5f-4bfd-44b6-aaaa-91d467e3b1f6", + "apim-request-id": "886e9346-f737-4271-a376-a21f072ce485", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:21 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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": "0b3776f4-e5d3-4162-8512-f00f820ceb6a", - "lastUpdateDateTime": "2021-08-06T01:51:17Z", - "createdDateTime": "2021-08-06T01:51:17Z", - "expirationDateTime": "2021-08-07T01:51:17Z", + "jobId": "a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "lastUpdateDateTime": "2021-09-23T14:45:03Z", + "createdDateTime": "2021-09-23T14:45:02Z", + "expirationDateTime": "2021-09-24T14:45:02Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -233,31 +233,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f31420deabd90f18a4ecee4ff1a985e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "711dd4e2-0174-4be7-b89d-9d4d9f71e5b4", + "apim-request-id": "798341db-fe85-47c5-8906-63db2abb0e63", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:22 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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": "0b3776f4-e5d3-4162-8512-f00f820ceb6a", - "lastUpdateDateTime": "2021-08-06T01:51:17Z", - "createdDateTime": "2021-08-06T01:51:17Z", - "expirationDateTime": "2021-08-07T01:51:17Z", + "jobId": "a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "lastUpdateDateTime": "2021-09-23T14:45:03Z", + "createdDateTime": "2021-09-23T14:45:02Z", + "expirationDateTime": "2021-09-24T14:45:02Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -270,31 +270,105 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c3cab5e99974b9db9141433dd67b397", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b36d7f0-dc33-4288-8627-9cd7cfcc19d5", + "apim-request-id": "65542b75-770a-4810-bc84-f87fe224c0a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:45:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "jobId": "a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "lastUpdateDateTime": "2021-09-23T14:45:03Z", + "createdDateTime": "2021-09-23T14:45:02Z", + "expirationDateTime": "2021-09-24T14:45:02Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithPHIDomain", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "616034ef576ee36bb7725c7c40ddc605", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "76a0188d-2b82-4138-bd8b-f414f580d47c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:45: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": "a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "lastUpdateDateTime": "2021-09-23T14:45:03Z", + "createdDateTime": "2021-09-23T14:45:02Z", + "expirationDateTime": "2021-09-24T14:45:02Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithPHIDomain", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fa1e93e7a5b345e782c93ac496e4323d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "32a7c1de-420f-4fed-8900-e72e66095374", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:23 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "0b3776f4-e5d3-4162-8512-f00f820ceb6a", - "lastUpdateDateTime": "2021-08-06T01:51:23Z", - "createdDateTime": "2021-08-06T01:51:17Z", - "expirationDateTime": "2021-08-07T01:51:17Z", + "jobId": "a3c3e034-69b6-4075-8cb4-e1a93519fcdd", + "lastUpdateDateTime": "2021-09-23T14:45:11Z", + "createdDateTime": "2021-09-23T14:45:02Z", + "expirationDateTime": "2021-09-24T14:45:02Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -305,7 +379,7 @@ "total": 1, "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:23.4456959Z", + "lastUpdateDateTime": "2021-09-23T14:45:11.2083524Z", "state": "succeeded", "results": { "documents": [ @@ -343,6 +417,6 @@ "Variables": { "RandomSeed": "1544755028", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPagination.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPagination.json index 6d4644f93e27..d26969b76620 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPagination.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPagination.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "1944", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2e253f6686388d4d858e7fba265569e3-448c3f892ac9194c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-84f19ad590ead144885e9963348646fa-7d8e82b6c2b8e545-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a3d6c2348d829c15de122829c1d2254", "x-ms-return-client-request-id": "true" }, @@ -144,42 +144,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2f631936-1342-4bf9-a7fa-cbcf4f566bf8", - "Date": "Fri, 06 Aug 2021 01:44:36 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "apim-request-id": "e23672ce-0cc8-4c16-8b55-a6e7cec55565", + "Date": "Thu, 23 Sep 2021 14:42:41 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "634" + "x-envoy-upstream-service-time": "699" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4d5c3f1f260ea429f32258bc15d3c165", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53dfaebd-b57c-4e05-a023-f9be67819073", + "apim-request-id": "65fb61fe-6deb-4165-ae05-b6f117a97add", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:36 GMT", + "Date": "Thu, 23 Sep 2021 14:42:41 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": "7" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:41Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -192,31 +192,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0814b8f9ff4d9a0118a1c7a3b4ca2d52", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa7b3d9e-b3bf-4c30-9fd2-73e69ab3806d", + "apim-request-id": "57d7aff5-0696-4d06-b079-d189bf1dcbb4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:37 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "6" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:42Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -229,31 +229,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e5bd681a9611fd57429866b6f0041489", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9cd55be7-66cc-4889-85f9-015afdb826d3", + "apim-request-id": "17c74696-b4a2-46ff-802b-00fa6ffa53c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:38 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "10" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:42Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -266,31 +266,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e389bc1f1a0820073dc2346c5e86f029", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8fe8d1bb-48fd-484e-9d75-9a5653564c7b", + "apim-request-id": "ec1d4218-e09f-4b5e-bb5b-fe0e29095049", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:39 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "8" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:42Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -303,31 +303,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aca106f5dc1663546016c5b4984baa13", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47bcddef-9c26-4da6-aa94-58dce11fef92", + "apim-request-id": "7bfd1f81-fda6-4f33-8691-a22c1374f1e1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:40 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "10" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:42Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -340,31 +340,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7833e8d4940ff49619da74f61ea9fbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e3d7264e-f4ae-45e2-a454-045fe83b4f5c", + "apim-request-id": "32b370bf-cb54-4c44-8d06-3c33f39235fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:41 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:42Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -377,31 +377,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eac03ca867624373682682f2555287f2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1288ea0-0292-455c-bbcb-74fef33130e0", + "apim-request-id": "b65afa5b-73b4-4873-b6e7-bd23affe0dd1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:42 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "13" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:48Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -414,31 +414,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "20de2017f802ace8bda24b7834050176", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c683fcf-c63b-450c-899e-249ef744ed28", + "apim-request-id": "b9664f07-c672-49f7-90f4-1100c0f5af71", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:43 GMT", + "Date": "Thu, 23 Sep 2021 14:42: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": "10" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:48Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -451,68 +451,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b0b0877bf8a26b0ca408f1ac657aa0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee11d95a-b9ac-4a0d-9197-4b553d0cd13a", + "apim-request-id": "a329a453-a72a-480a-b2cb-e956218ffc52", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:44 GMT", + "Date": "Thu, 23 Sep 2021 14:42:51 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": "357" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:43Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4037b5167f0cafba54142dc01cfa0e62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0d7bff2f-7e82-4a58-8566-9255954bb55a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:45 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "184" - }, - "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:45Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:50Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -523,8 +486,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:45.5707107Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:50.3741302Z", "state": "succeeded", "results": { "documents": [ @@ -735,35 +697,35 @@ } ] }, - "@nextLink": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8?$skip=20\u0026$top=3\u0026showStats=False" + "@nextLink": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4?$skip=20\u0026$top=3\u0026showStats=False" } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8?$skip=20\u0026$top=3\u0026showStats=False", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4c7a0c252b4757676fb855c169cee566", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4037b5167f0cafba54142dc01cfa0e62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84dd73d9-9c77-4680-938d-24c4f6797f4e", + "apim-request-id": "cccdf73b-eb6e-468d-b67f-c61c79e78487", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:45 GMT", + "Date": "Thu, 23 Sep 2021 14:42:51 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": "104" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:45Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:50Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -774,8 +736,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:45.5707107Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:50.3741302Z", "state": "succeeded", "results": { "documents": [ @@ -819,31 +780,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8?$skip=20\u0026$top=3\u0026showStats=False", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/e3a9b19e-814a-41fe-ab07-14c57a42f2e4?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7f623cf7c0cef86a4e5b077692f00ad0", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4c7a0c252b4757676fb855c169cee566", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea4b8b35-d98f-4fa2-8f56-5d3c15df93bf", + "apim-request-id": "2e6f50a1-8404-4806-97ed-7a3ee4e4fc6b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:45 GMT", + "Date": "Thu, 23 Sep 2021 14:42:51 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": "89" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:45Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "e3a9b19e-814a-41fe-ab07-14c57a42f2e4", + "lastUpdateDateTime": "2021-09-23T14:42:50Z", + "createdDateTime": "2021-09-23T14:42:41Z", + "expirationDateTime": "2021-09-24T14:42:41Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -854,8 +815,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:45.5707107Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:42:50.3741302Z", "state": "succeeded", "results": { "documents": [ @@ -902,6 +862,6 @@ "Variables": { "RandomSeed": "275027038", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPaginationAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPaginationAsync.json index 98010c4d6321..7d8f5ac97971 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPaginationAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPaginationAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "1944", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-123bdb22f5187048816ad7d90898541a-2451742d5ef68046-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b1cdff457d471548b372786babbe4964-32e06affb5ff784e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "21ac64e10f1baa75d580bbe74a8c1d32", "x-ms-return-client-request-id": "true" }, @@ -144,2042 +144,43 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ba2189f0-2a25-4b7a-a101-93dd6da59b67", - "Date": "Fri, 06 Aug 2021 01:50:08 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "apim-request-id": "3d81dfe4-7098-4209-9b5d-844332302987", + "Date": "Thu, 23 Sep 2021 14:44:52 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1057" + "x-envoy-upstream-service-time": "868" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6309a59d4cb441b6d3a8ce20237d04a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d5c188e-e7e2-4ee5-ac88-48dcc6faac78", + "apim-request-id": "3a3011c2-79a3-49a5-ab7f-bed185d1dd76", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "notStarted", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e3d0a275ac6660be41af3fd3bf957141", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c5273865-d2ce-45cc-9925-39088dca9dce", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:10 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2d059a9f02910c864867b4e18393a89d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "37ccfe5a-9b73-4793-a9a9-7e76ebde2b63", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a87271af3abbaccbdbd0751c954884d8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "37f25ab4-718a-4058-97e2-8e9ec9218c73", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "68424ac8a23173b91bc49bfef8dddcae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "53d05e42-115b-4de3-901b-55ab217c2f42", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4e23a107c9226585ce5851c08c6a7600", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2b8aa5e5-052c-4e9a-aa2c-99bb5000b2df", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:14 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3818dce33f500d6cb8ff8cf79eccb4fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fea8168f-fe47-455a-98b8-7cfadbf81609", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f414c7f33524ffb5c4dc9ad850f8e6b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "df7b9c7b-a288-4179-88f5-4164a9bd65b3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:16 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1b1b9a4da3c4c85d341696233c8dc601", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2002aacf-33c6-4e06-a3cf-51c1ea879078", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c5cc53a48255addc27197474a593bcbf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "40269485-64e5-4807-a097-750964166977", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "04aadb1998b14f3a694cbf0d9f91c336", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "499dc210-4b62-4b62-9e3b-9322b67191e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fd349816202cca5bbe6df4ab2fe922a0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "25bfa491-fa39-4fe4-8e37-e2b19f79de76", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" - }, - "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "600ad659c2e30b50187c5c09c2ce0d95", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "826c3ddb-a6f8-41f9-85c9-7b0bf63394d7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0c5d3d56bf5ff89380df4543a48f1f80", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "972ac780-96c3-4c09-9198-9c2e7fbca2cf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:22 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c8b31e29628753534728e4afc45107ef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "10a83fe1-e513-4c4c-b209-38b163c6a1be", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f2555e5f158b9a404311e0037c0d6788", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f538a4aa-8ef4-47dd-bad3-9f684cff6715", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:24 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a4dfdc5c451af30ee90ac537dae4342f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ef429196-ce64-4307-8906-cdc1b72b9771", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "45e355d82d3a13f4dd1985758250d63a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0f354fc5-562b-4d31-ad81-e2ef184b3be3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:26 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e8525cc063721ad5506108815009bf5f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d3e72319-e483-4157-ac31-0a59ba7107bc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:27 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "272bb0dd22292f4ee7cbc601c0997199", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b7437b35-ce83-41ea-8dd4-938e6298ec15", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:28 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7e768a334c9174bc80c9f5d82473c3d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "07bc49e0-8cd6-41f5-927e-70ddb39613da", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:29 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d1982559af249e110d2200a69dd35ab7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c2372bb2-19bf-440c-b57a-91d0dd1b64e2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c64d6ff0419290cdf4b6a65f2c750a73", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f0809202-dad0-42a3-9736-86879a78ddc7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9aa7f1089f00847479d7716e4b16d7ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5b9601cb-5529-4bb0-b152-20f64a6a9ac2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b5e83e6ffd2618415707dd6e08b17197", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dd222afc-7755-43e8-8619-50c15e821fbe", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:33 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ab9d8d17bf2c50b6fac94cbacf5e45dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9e7e2481-ee9b-4ac9-b62d-5f068dfce787", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eef0fadf558d0b4db08e43f9c2067bc7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5599d394-cb03-4543-acbc-9463445a257c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:36 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bd57d9662b78af7f8797bb5cb08648f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0652b417-00f7-4d26-b178-27779bcadf8f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:37 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0e8fffc283c0c20a3f92fb9e7cbd8ef3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "99de2a4c-83f9-410a-b0ad-f5be8ea806ce", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f654844d8707b3647a4167f59af15a29", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3b47a47f-f582-405a-b001-117a756ae0a4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:39 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c2374a456d77e207ce947de530e133ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "67275346-fcc3-496f-9667-af9cd00c1444", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:40 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2b0ec70952313af09bdb937f1c15274e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dd286fcc-5dd8-4b54-a8ef-0dd7208cbe35", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3158d237cc86e07c7d712872097e8398", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4e95b0ae-be38-4651-984f-badaf6f32073", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d3ec9c0d2fe2f3f75afc279bda88c6b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cde9c522-86b8-4264-9b14-4328886413c1", - "Connection": "close", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:43 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5eae2e6d02893c444b2eaebf2a7d311c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ee6c4564-69e7-4018-ac47-9c4b81e5c903", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7f71fb585428086cda65d689a5e006f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "59eaa9e3-f081-4e62-9779-5b51d4b0f8f9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "da056eaa25d00b0f58af87b38137c9dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "335f337f-45e8-49cc-910d-f0a91cc120cc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:47 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "df430acb47171890c2a583232bba976a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6bdfe92-8253-462d-8d5d-cde2ca096781", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bb15b8285678324beb652679ccb887a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cebeab92-df0f-415e-b386-1a46d67ac3b4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:49 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9abefa9c279c63dddeec182ba1ecdf9e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cd4543e3-fceb-48cf-966a-7ba2c038e5dd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c88b1d170d227464bf11f3b121174c09", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fb7a6448-ab6c-410d-bfc7-0beca39654a2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3186e11efdfb01cedbb1dc8b3e2090ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5410bd88-19a7-4b40-a5fc-013c46f4414d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" - }, - "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "af618886be2c8e7f9549da8b332c42c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1dde84bf-3768-4e1e-8c89-d8920aadc832", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c00c0ea0ae651aa24f8aed7130d8369f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3765f250-5327-4424-85fb-a50588a30523", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:54 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "992bf4809cb55fdc61f89bb22342cdae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "35978bca-4172-482a-844f-7e38c021f9d6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:55 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2fea156fd013d79ae54760a2d10e5dbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "852b055b-7d40-4f12-b174-ae75024c8363", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3f0a3b12a901031131ad5f6c12f0f70c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fc65e411-7fb0-4068-a55e-a361f88b66cb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1b013ebd06edb08c5953b36d3c3a8d52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1ba61851-48b3-47f3-9fae-54be185a84f8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e79fde9a8e37c6ad03e7fe65702dc5f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a13395b9-9058-4129-babf-c340570ac053", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "92e55450420d0ccfaf5ae5adf5a3c7f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f218d10d-6397-42b4-88bf-4c0cb90f0287", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:00 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "34d20d1f0f512fd4913a170608263f2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8b634162-8322-48fa-b142-9719977c19b2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:01 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e81dbf8efa5558440f9338dda8ffd15f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "968870ce-3d34-49d1-acf9-acf2c3fc9b50", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:02 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "62450720905b41a37fb601d22ac80488", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a00c8b79-37f3-4b92-a89b-40b74064a0c8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "351fb91ade8625a1c87925bed6f78692", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9b70638b-3a27-4925-8773-ab72164e80ba", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:05 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "00e6b769dde0fdd01cdc689ff9722d46", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8669e66f-4f44-41ad-b7d0-dd1a1d1a6665", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:44:52Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", + "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { @@ -2191,105 +192,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eec2af8f9bdf41d966209ae16be46a88", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e3d0a275ac6660be41af3fd3bf957141", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea151dbf-0757-4e09-b5ac-8fb44d020f1e", + "apim-request-id": "cbee276e-ea19-4df9-bb27-ecd7f53f2378", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:07 GMT", + "Date": "Thu, 23 Sep 2021 14:44:53 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "72686e2f03e23da8e92219aa75012b56", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d887c739-664b-4d5c-955c-c683672a41f9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithPagination", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "262fde4c9834ceb2dea499bf42ee9137", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "db6e8473-252d-460d-b41c-72b408bc16c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:44:52Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2302,31 +229,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8a70e071ba098b63078405bd822ecb65", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2d059a9f02910c864867b4e18393a89d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67dd1476-6814-4e86-915b-fb542ee98ac6", + "apim-request-id": "21e30c4d-5222-40f4-8bc4-0d62effe0280", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:10 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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": "11" }, "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:44:52Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2339,31 +266,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8c9544f544b59754bb9a933d6ae9fbfa", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a87271af3abbaccbdbd0751c954884d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "170101cb-3140-4b5b-96da-af7598c92c41", + "apim-request-id": "37662a9e-9e53-4dd2-972d-aebfdea14a6a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:11 GMT", + "Date": "Thu, 23 Sep 2021 14:44:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:44:52Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2376,31 +303,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9539e190a091914c7ba41faf92f54bb0", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "68424ac8a23173b91bc49bfef8dddcae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5a504700-44d2-43e8-bb33-7a5bcad79e19", + "apim-request-id": "7cac43d7-1713-4a46-adc9-0e1a85935759", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:12 GMT", + "Date": "Thu, 23 Sep 2021 14:44: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-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:44:52Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2413,31 +340,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "feca34d904592c828cd8cf6e2626201e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4e23a107c9226585ce5851c08c6a7600", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94bd5c64-43dc-4459-8751-05914f3b1c11", + "apim-request-id": "400094ad-5e6c-4d70-ae62-c690e6076fa0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:13 GMT", + "Date": "Thu, 23 Sep 2021 14:44:58 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:44:52Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2450,31 +377,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a02d0a8935f454d3f703111124a404c6", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3818dce33f500d6cb8ff8cf79eccb4fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ff1b174-848b-4916-9d5b-25d61e9fc742", + "apim-request-id": "aac629ff-e787-49b0-b8b2-01d2bc5ef291", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:14 GMT", + "Date": "Thu, 23 Sep 2021 14:44:59 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:51:14Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:44:58Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2487,31 +414,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3663e34ffc1e8ca05f0c09b8d1dd6a54", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f414c7f33524ffb5c4dc9ad850f8e6b0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "011649b0-3019-4796-ab73-faa8524758b9", + "apim-request-id": "36f63de7-d4b7-40af-87c6-a25b20674fb4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:15 GMT", + "Date": "Thu, 23 Sep 2021 14:45:00 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": "8" }, "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:51:14Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:45:00Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2524,31 +451,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "88250183aac8a4bb60750655f27008e7", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1b1b9a4da3c4c85d341696233c8dc601", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "629388d8-ad75-4379-8fa2-3db2538986bf", + "apim-request-id": "5718e723-66d5-4a67-b913-e431d338319c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:16 GMT", + "Date": "Thu, 23 Sep 2021 14:45:01 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": "384" }, "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:51:16Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:45:01Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2559,8 +486,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:16.1632865Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:45:01.0504897Z", "state": "succeeded", "results": { "documents": [ @@ -2771,35 +697,35 @@ } ] }, - "@nextLink": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02?$skip=20\u0026$top=3\u0026showStats=False" + "@nextLink": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449?$skip=20\u0026$top=3\u0026showStats=False" } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02?$skip=20\u0026$top=3\u0026showStats=False", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "431f08d4eac28cff69a141e82b1b8319", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c5cc53a48255addc27197474a593bcbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38494f8d-81bf-4d98-8103-03dd4208977c", + "apim-request-id": "566d56f3-7158-4244-a08d-f24a824052ad", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:16 GMT", + "Date": "Thu, 23 Sep 2021 14:45:01 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": "111" }, "ResponseBody": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:51:16Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:45:01Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2810,8 +736,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:16.1632865Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:45:01.0504897Z", "state": "succeeded", "results": { "documents": [ @@ -2855,31 +780,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02?$skip=20\u0026$top=3\u0026showStats=False", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/2c091aff-a5d6-49cf-a6cb-f2aaba7ab449?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "238dbd997b7ea4fe27bfd6a9f64b99ee", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04aadb1998b14f3a694cbf0d9f91c336", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e763b119-8df9-47b6-92fa-0bc402d64213", + "apim-request-id": "e062b191-a85c-439f-b8ad-a72faf68f4f9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:16 GMT", + "Date": "Thu, 23 Sep 2021 14:45:01 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": { - "jobId": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:51:16Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "2c091aff-a5d6-49cf-a6cb-f2aaba7ab449", + "lastUpdateDateTime": "2021-09-23T14:45:01Z", + "createdDateTime": "2021-09-23T14:44:51Z", + "expirationDateTime": "2021-09-24T14:44:51Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2890,8 +815,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:16.1632865Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:45:01.0504897Z", "state": "succeeded", "results": { "documents": [ @@ -2938,6 +862,6 @@ "Variables": { "RandomSeed": "24609339", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategoriesAsync.json index 9cda33728a55..3a63446761d5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategoriesAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "328", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-75c2bffd1a679b4e9dd1ea348600b9b8-64a7b15052e20640-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-138fe4d70a6d794bb65b1a1e37c09ff6-f476787fb4be4341-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "32c323d944ebc101cfef406c61f44cba", "x-ms-return-client-request-id": "true" }, @@ -38,42 +38,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7d91ac1d-f731-4cf3-bb45-09574079fb83", - "Date": "Fri, 06 Aug 2021 01:51:23 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", + "apim-request-id": "09d01f91-a9fc-4975-b881-9b37700034aa", + "Date": "Thu, 23 Sep 2021 14:45:11 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/518f3c7a-8373-4ca4-afd3-b005457e145e", "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": "180" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/518f3c7a-8373-4ca4-afd3-b005457e145e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b7957cdb9c168af0199370dfb7f5028", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf35a3df-7d55-49e3-968b-749576473589", + "apim-request-id": "f8643251-5186-4039-a957-06b6638b70ef", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:24 GMT", + "Date": "Thu, 23 Sep 2021 14:45:11 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": "7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "lastUpdateDateTime": "2021-08-06T01:51:24Z", - "createdDateTime": "2021-08-06T01:51:24Z", - "expirationDateTime": "2021-08-07T01:51:24Z", + "jobId": "518f3c7a-8373-4ca4-afd3-b005457e145e", + "lastUpdateDateTime": "2021-09-23T14:45:12Z", + "createdDateTime": "2021-09-23T14:45:12Z", + "expirationDateTime": "2021-09-24T14:45:12Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -86,31 +86,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/518f3c7a-8373-4ca4-afd3-b005457e145e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4004f81507632899cee58f8d15635040", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cbae331a-2571-4712-b246-2a4d88bb8261", + "apim-request-id": "37159c63-eadf-4639-a2f3-cb9437982b76", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:25 GMT", + "Date": "Thu, 23 Sep 2021 14:45:13 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": "7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "lastUpdateDateTime": "2021-08-06T01:51:25Z", - "createdDateTime": "2021-08-06T01:51:24Z", - "expirationDateTime": "2021-08-07T01:51:24Z", + "jobId": "518f3c7a-8373-4ca4-afd3-b005457e145e", + "lastUpdateDateTime": "2021-09-23T14:45:13Z", + "createdDateTime": "2021-09-23T14:45:12Z", + "expirationDateTime": "2021-09-24T14:45:12Z", "status": "running", "errors": [], "displayName": "NA", @@ -123,105 +123,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/518f3c7a-8373-4ca4-afd3-b005457e145e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46900fccd3641ff8735a31510df3c64f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb656662-89bb-4be9-b920-cbe54e3d4e66", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "lastUpdateDateTime": "2021-08-06T01:51:25Z", - "createdDateTime": "2021-08-06T01:51:24Z", - "expirationDateTime": "2021-08-07T01:51:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6957179f0bf0c557bd518ddc2a22539e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "17cdd93a-a2cf-45bd-b6e5-b2e3d0f30f65", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:27 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": "7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "lastUpdateDateTime": "2021-08-06T01:51:25Z", - "createdDateTime": "2021-08-06T01:51:24Z", - "expirationDateTime": "2021-08-07T01:51:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eb41f74809ef41c3ffe4cc09d6481bda", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "acc5cb15-b28c-4b36-b29d-c5a75aa83753", + "apim-request-id": "8d5ff34c-fd15-4bc7-a39d-5ccb00bdd8b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:28 GMT", + "Date": "Thu, 23 Sep 2021 14:45:14 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": "7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "lastUpdateDateTime": "2021-08-06T01:51:25Z", - "createdDateTime": "2021-08-06T01:51:24Z", - "expirationDateTime": "2021-08-07T01:51:24Z", + "jobId": "518f3c7a-8373-4ca4-afd3-b005457e145e", + "lastUpdateDateTime": "2021-09-23T14:45:13Z", + "createdDateTime": "2021-09-23T14:45:12Z", + "expirationDateTime": "2021-09-24T14:45:12Z", "status": "running", "errors": [], "displayName": "NA", @@ -234,142 +160,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/518f3c7a-8373-4ca4-afd3-b005457e145e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fded3f1fe70cc04fb7ca8813451cf451", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e607ae65-78b8-4d1c-a583-eba0aa10048a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "lastUpdateDateTime": "2021-08-06T01:51:25Z", - "createdDateTime": "2021-08-06T01:51:24Z", - "expirationDateTime": "2021-08-07T01:51:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "15099306dab296605415690b3f4eee75", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7932dbbb-0e2d-41a8-9a4e-455114f97fed", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "lastUpdateDateTime": "2021-08-06T01:51:25Z", - "createdDateTime": "2021-08-06T01:51:24Z", - "expirationDateTime": "2021-08-07T01:51:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ebbdb33556346092a781332480b0fce3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6b5f694a-a7d5-4ec0-95be-c7546bb13d0b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:31 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": "7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "lastUpdateDateTime": "2021-08-06T01:51:25Z", - "createdDateTime": "2021-08-06T01:51:24Z", - "expirationDateTime": "2021-08-07T01:51:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "43027bf0053e4427df56a9f67e448169", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6957179f0bf0c557bd518ddc2a22539e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2003cb60-f5e3-465f-a69f-dfdb9303feda", + "apim-request-id": "0cead53c-6107-485c-aea3-217eca18cfdb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:32 GMT", + "Date": "Thu, 23 Sep 2021 14:45:15 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": "63" }, "ResponseBody": { - "jobId": "7b4bb16b-7115-4e92-97ba-38fdb0a05028", - "lastUpdateDateTime": "2021-08-06T01:51:32Z", - "createdDateTime": "2021-08-06T01:51:24Z", - "expirationDateTime": "2021-08-07T01:51:24Z", + "jobId": "518f3c7a-8373-4ca4-afd3-b005457e145e", + "lastUpdateDateTime": "2021-09-23T14:45:15Z", + "createdDateTime": "2021-09-23T14:45:12Z", + "expirationDateTime": "2021-09-24T14:45:12Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -380,8 +195,7 @@ "total": 1, "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:32.1743272Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-09-23T14:45:15.1898509Z", "state": "succeeded", "results": { "documents": [ @@ -412,6 +226,6 @@ "Variables": { "RandomSeed": "1393333091", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTest.json index 4d5debb5f0d8..10004f3a991f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTest.json @@ -1,15 +1,77 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "337", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-66813d1155c14c40b75d7588aaa49e91-6f9c976191e6a641-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2a7cd6b83526104981bfd9e9809df1c5-62fafb1976663f44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "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" + }, + { + "id": "3", + "text": "", + "language": "es" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": {} + } + ] + }, + "displayName": "AnalyzeOperationTest" + }, + "StatusCode": 500, + "ResponseHeaders": { + "apim-request-id": "5b94d3e1-fe06-4054-8f35-2d9d0a6b4128", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:43:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "555" + }, + "ResponseBody": { + "error": { + "code": "InternalServerError", + "innerError": { + "requestId": "5b94d3e1-fe06-4054-8f35-2d9d0a6b4128" + }, + "message": "Internal server error" + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "337", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-2a7cd6b83526104981bfd9e9809df1c5-62fafb1976663f44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7113589c3007a78af3272be840001637", "x-ms-return-client-request-id": "true" }, @@ -44,43 +106,43 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fc4b8f51-791e-43c1-b402-1142cf573d11", - "Date": "Fri, 06 Aug 2021 01:45:01 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f7bbb119-0652-4c09-8153-938b12560b23", + "apim-request-id": "4cf204b2-a9e4-4d7f-9109-64d15acc43e3", + "Date": "Thu, 23 Sep 2021 14:43:47 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438", "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": "293" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f7bbb119-0652-4c09-8153-938b12560b23?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "144d8fd0fea1ffdadc949dbbddaecf18", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b07942d5-1025-4d1a-b228-51d5ae6340e0", + "apim-request-id": "4bf3b9cf-a187-42da-bf1d-5c91ee65b9cd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:01 GMT", + "Date": "Thu, 23 Sep 2021 14:43: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": "f7bbb119-0652-4c09-8153-938b12560b23", - "lastUpdateDateTime": "2021-08-06T01:45:01Z", - "createdDateTime": "2021-08-06T01:45:01Z", - "expirationDateTime": "2021-08-07T01:45:01Z", - "status": "notStarted", + "jobId": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { @@ -92,31 +154,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f7bbb119-0652-4c09-8153-938b12560b23?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "451e25c95048143288e779fc762b7962", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4190e6ed-508d-435e-b093-e6360404bdc2", + "apim-request-id": "1afd276e-68ef-4092-b5c2-e306d1d5abe2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:02 GMT", + "Date": "Thu, 23 Sep 2021 14:43: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": "9" }, "ResponseBody": { - "jobId": "f7bbb119-0652-4c09-8153-938b12560b23", - "lastUpdateDateTime": "2021-08-06T01:45:01Z", - "createdDateTime": "2021-08-06T01:45:01Z", - "expirationDateTime": "2021-08-07T01:45:01Z", + "jobId": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -129,31 +191,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f7bbb119-0652-4c09-8153-938b12560b23?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f329f0ff21bb9efb7e13957393cfc944", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ab44840-3f90-4c0c-8309-784e7e013f4b", + "apim-request-id": "f0a9cade-c525-410c-b650-857815ff2c04", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:03 GMT", + "Date": "Thu, 23 Sep 2021 14:43: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": "10" }, "ResponseBody": { - "jobId": "f7bbb119-0652-4c09-8153-938b12560b23", - "lastUpdateDateTime": "2021-08-06T01:45:01Z", - "createdDateTime": "2021-08-06T01:45:01Z", - "expirationDateTime": "2021-08-07T01:45:01Z", + "jobId": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -166,31 +228,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f7bbb119-0652-4c09-8153-938b12560b23?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b1f1358d0e27fee5d388bb985dd89b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6aaaf06c-dcad-4063-87ce-63d6eabf40ec", + "apim-request-id": "b66a3134-33a0-4c05-b447-8a98cde5a2c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:04 GMT", + "Date": "Thu, 23 Sep 2021 14:43: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": "12" }, "ResponseBody": { - "jobId": "f7bbb119-0652-4c09-8153-938b12560b23", - "lastUpdateDateTime": "2021-08-06T01:45:01Z", - "createdDateTime": "2021-08-06T01:45:01Z", - "expirationDateTime": "2021-08-07T01:45:01Z", + "jobId": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -203,31 +265,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f7bbb119-0652-4c09-8153-938b12560b23?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "edbc3b1bdb85a75d2980c735bbbe81b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "63b5715c-2ada-4fa5-be12-4086189a839b", + "apim-request-id": "dc2ab3b3-392a-4137-84a4-934784741c40", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:05 GMT", + "Date": "Thu, 23 Sep 2021 14:43: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": "8" }, "ResponseBody": { - "jobId": "f7bbb119-0652-4c09-8153-938b12560b23", - "lastUpdateDateTime": "2021-08-06T01:45:01Z", - "createdDateTime": "2021-08-06T01:45:01Z", - "expirationDateTime": "2021-08-07T01:45:01Z", + "jobId": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -240,31 +302,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f7bbb119-0652-4c09-8153-938b12560b23?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "63a4341e5d0b2f8001a99582954218a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c977ed7-35ba-4d0f-909c-4b2c0b60f348", + "apim-request-id": "a02a225a-9e11-44e6-8c56-8197c896960e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:06 GMT", + "Date": "Thu, 23 Sep 2021 14:43: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": "9" }, "ResponseBody": { - "jobId": "f7bbb119-0652-4c09-8153-938b12560b23", - "lastUpdateDateTime": "2021-08-06T01:45:01Z", - "createdDateTime": "2021-08-06T01:45:01Z", - "expirationDateTime": "2021-08-07T01:45:01Z", + "jobId": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -277,31 +339,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f7bbb119-0652-4c09-8153-938b12560b23?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5758e38adc137cbfb678f16108b9c49e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "221ec84d-b7a3-4a2d-a0cb-09109a590e67", + "apim-request-id": "945d3af7-7253-49b8-b972-bbf67f09a999", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:07 GMT", + "Date": "Thu, 23 Sep 2021 14:43: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-envoy-upstream-service-time": "12" }, "ResponseBody": { - "jobId": "f7bbb119-0652-4c09-8153-938b12560b23", - "lastUpdateDateTime": "2021-08-06T01:45:01Z", - "createdDateTime": "2021-08-06T01:45:01Z", - "expirationDateTime": "2021-08-07T01:45:01Z", + "jobId": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -314,31 +376,586 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f7bbb119-0652-4c09-8153-938b12560b23?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "519bd2b72539bda5ba8debdc46da12e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a88890d-57c4-4a6a-bed5-c5058549ca76", + "apim-request-id": "cf250995-72a4-4aa1-8086-fd73c5f070fd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:43:55 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d7aa2668296641a57527ad936b1f2648", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bd0ed38e-b27f-40da-9377-c72b5c2cce06", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:43: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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c3caf6e4c7a664663e9a9c86f0e336db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c005a4b-501d-41ca-ba44-1cc70005e1e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:43:57 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e1f90a66ed0e8e382c5adc117812519b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0758834a-9e01-488d-a293-22690b95a074", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:43: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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4ff7a3664e10a041c04599cb8c1f5191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5d57d0c9-ad8b-4a3e-b121-e9eb5c0977cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:00 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "612dd1f14425f739be3c964ceb54ec2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7b3064b-86d2-47e8-af96-fed894567f0c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:01 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4d1f0048e7eb17cbc95821c8546c010d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "24e162ac-3bcb-477c-afde-3fdf6e41c1b3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:02 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a7204a08f0e5227669ff90d3b8f4b56b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "545f382c-d1ec-4d0b-a425-d6fe7bd248a2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:03 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8b826d5903000aa5061698cd2371a351", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0d85bee6-8b76-4b10-b264-6d0759e8bd0a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:04 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a043893a443458468afde3eb56f75ed4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "595bd249-6f87-4929-8069-502e30586f83", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e66fb6a275ea050da415a0cf57a8fef8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f3b32844-98fd-41ab-a847-f379898877a1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:07 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2f993f5c15b11436272a00021fb9b40e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fb0a6f42-2591-4666-b77d-dd5244997976", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:08 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6d2bc3b7bc02c4677b3efc1ea47600e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cd69b30f-5aea-4b40-a951-85c90173a54a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44: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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "168febfe2f5e8d227f5abfc0750ae5ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47113b9f-6aaf-491d-b479-ff89c725878f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:10 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "93179161917ca0f6d8d4b373181770b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cc16807a-be0b-4e0b-8f08-52b86a15aef1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Sep 2021 14:44:11 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": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:43:47Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/d784706f-c7da-41e8-87a2-94d25b68a438?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "34041e299e2a88b0a09eeda7fda74f71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d0ed26b2-02bf-45b1-b942-fe292ab579af", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:08 GMT", + "Date": "Thu, 23 Sep 2021 14:44:12 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": "95" }, "ResponseBody": { - "jobId": "f7bbb119-0652-4c09-8153-938b12560b23", - "lastUpdateDateTime": "2021-08-06T01:45:08Z", - "createdDateTime": "2021-08-06T01:45:01Z", - "expirationDateTime": "2021-08-07T01:45:01Z", + "jobId": "d784706f-c7da-41e8-87a2-94d25b68a438", + "lastUpdateDateTime": "2021-09-23T14:44:12Z", + "createdDateTime": "2021-09-23T14:43:47Z", + "expirationDateTime": "2021-09-24T14:43:47Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationTest", @@ -349,8 +966,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:08.2672423Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:44:12.338983Z", "state": "succeeded", "results": { "statistics": { @@ -376,7 +992,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -412,6 +1027,6 @@ "Variables": { "RandomSeed": "267372785", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTestAsync.json index e47a3e07a53b..03036244ebfd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "337", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-274d3d4c16faa043bbbf6d9b3803b472-7f2c2df2b97dcf44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-08cb777ec459c14582e0ba46654b8206-7e934784a5da4c49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2542d8e9f699af8c456bc28823041414", "x-ms-return-client-request-id": "true" }, @@ -44,42 +44,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "452410e0-4aaf-4ff2-84be-f003c759f473", - "Date": "Fri, 06 Aug 2021 01:51:32 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa", + "apim-request-id": "92c09074-88c3-4700-9523-007020d474c5", + "Date": "Thu, 23 Sep 2021 14:45:15 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/45269a5e-a75c-4026-bcba-e6450227aaaf", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "260" + "x-envoy-upstream-service-time": "215" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/45269a5e-a75c-4026-bcba-e6450227aaaf?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed9d01e6f22a03f27d82800089c0a199", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f06ac2a-d499-4e67-882e-c69b71b67dbe", + "apim-request-id": "d59e850c-6a9f-4bd0-8c7f-0d07a3208fad", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:32 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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": "12" }, "ResponseBody": { - "jobId": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:33Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", + "jobId": "45269a5e-a75c-4026-bcba-e6450227aaaf", + "lastUpdateDateTime": "2021-09-23T14:45:16Z", + "createdDateTime": "2021-09-23T14:45:16Z", + "expirationDateTime": "2021-09-24T14:45:16Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationTest", @@ -92,290 +92,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/45269a5e-a75c-4026-bcba-e6450227aaaf?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90b6c8c3c1a1af318c24ffc2d4d26635", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "723dddb8-4a7a-41fe-938b-59c5b1aa25d1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:34 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:33Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "notStarted", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7d35e0d1c2bff7dee53fa717758b2584", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a3dbc1c9-ebec-43a3-bf0c-d741cd7b2331", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:35 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5ac529c9844e2473cfee6106f2302eaa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d52ce07f-5363-4359-90b8-63f7d56363dc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a82f4b1b238a00d9eabeaa62191a3900", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "78e9fb35-1cfd-4eba-8c24-ce75655a0e12", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "abf87bfe0c0d4ce66d10add060d805b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "214784aa-fc2d-49b1-90d5-2302544a69cb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "29fbfd107d5ca6f950c46f90da110bb5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bc49280b-8f03-4d56-af5b-0cfc9da8112b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "760760b583380f9d64e23b797508a012", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "529bb956-7257-459b-b801-c9640c5ace51", + "apim-request-id": "485d1e1c-18b5-4d88-ad3f-e87baabc425a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:40 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1c51f5b90f1f81a481515b489c56725b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "80869910-412d-4c87-b0af-7ef51d0ca07b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:41 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", + "jobId": "45269a5e-a75c-4026-bcba-e6450227aaaf", + "lastUpdateDateTime": "2021-09-23T14:45:16Z", + "createdDateTime": "2021-09-23T14:45:16Z", + "expirationDateTime": "2021-09-24T14:45:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -388,2029 +129,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/45269a5e-a75c-4026-bcba-e6450227aaaf?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ff1bf8058ed08c7c60ecc57a417f3147", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9e91f7a5-a2ac-4b89-af5a-6085b033cd30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": { - "jobId": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e5d65d23efbfa595bc85f4e62754720e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "044a629d-3103-4927-a58f-9b23f99fb85c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "jobId": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7c74e06fa0ec2a4178c5bb324a2a3f02", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ea7c4e42-becc-405d-b587-76ae92174244", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3f2414208c7f169b6275434a9a95650c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "efa610fb-9bcb-4eff-b93e-9d7c2960ea67", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "610ab67ab40b835a1bac6cfa33625b92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "26391318-16c2-4d1e-9c35-4cbfed6de0e5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:46 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "13c6f246322fe38f445e19775cf690e2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2f9b3f13-ead3-4a11-8dd9-9a8ac0262abe", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "94b8af5fdd1f6cf7b9a124d31fa0e200", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bcbe4cd8-64b8-44c4-9b76-b99f14e28b64", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a704b11a51cf47dc27271cad9ae32725", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "aebc33f0-9ca6-49ad-ae91-a5a9bc648e95", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "839a8a1bc6aa6872fb595a8d0ebbc3a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f605c7b6-3dd6-4948-b9f3-e14b2b5c175f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "aa5c197be8f20e13d3706df8c049d1d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f7f7606e-699e-423a-9f96-d305702ee271", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "95b7ff7a5f0553553f9bac75f74e396b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6dc812d0-a675-4397-8937-b33c367e3de4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "803178647c863232768cb0395979a7b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fa313f9d-636b-4703-9d87-b4c781a4cfcc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0f1384872d041b9ec3086b563c9d1784", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "647dbf8d-f1d2-480a-9fae-3850722e3f91", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "489402365118fe4fcc851e79ae1cfac5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dfe083a2-bbe8-4546-95c6-e848458f6809", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:55 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "72eefbf42a3b3667da15bc7e10dcf6d9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a26fd8a4-7dd9-4cd2-9b55-3a42613a747a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:56 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "57022c745fe536993515437e0e246da7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b754a6d7-1168-43e8-a808-50aa8040c5a0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4062a50ea4af0c499b5e6d0294d1edef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2775c59f-ee34-4405-a76b-6cff46387292", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" - }, - "ResponseBody": { - "jobId": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8204448ea21994e062b73d25e7e827b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f41a850a-d909-4083-9a4a-f5ac13b97ffd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6b6f15a8b57ad02ae3f6bc87f297a263", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "820eee98-f964-4ecb-9554-fa9a878c922f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c9ef5328ea206b8ec4cddef7662325b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "261872a0-5d01-4d07-9baa-4a1ef1a90e1b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:02 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7e59b7368261d9751a349e23e659a2ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f116318d-a646-4b7f-b756-3e2486f585aa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "94fdd9155df8bd958703a6acd63269bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bd64f666-db9e-4d1e-b6dc-c5de2d696f73", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3a5009d1233da602dd16afec4c6a846b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "30683e3f-bb66-4239-8a05-ae2f2987f9ca", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" - }, - "ResponseBody": { - "jobId": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8de2142b9026d9ba229bf75ddbc802e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0b3c784b-0113-4357-b154-753055f1001a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:06 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dd52dfca6809f18cd756b6e1ada9711c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d03d1630-fc56-4940-8ab7-9f48f0a1fbcf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c2813b7edc5040994e7718a22ba4ca14", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9a1dca33-de25-4542-a1b0-1ff3f9cc14a9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6c21c813a718c36187f1b5cfdad82b79", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "91df2631-a6b9-4ff1-9f1e-7859118548d6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a0dedb294047ee9745128e9150eac532", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1562fc90-7c3b-46d3-b34a-4d8d30fa681c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:10 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e5cda18b0487d704d9be3b5f26c96575", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "10420e80-932c-4246-b6f5-2f155c97ceec", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:11 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "50789e4c2ac5d3cd3133260518d0739c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8c39a1fd-5ff1-4b34-80c2-875545078b4f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3843822b450b24f2d607c7890537c77c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "633a5b8b-170c-4026-a8f9-e1299ce76aa7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b14519ac7471616dd4fab454ddfebe09", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d07d564f-b3e8-496c-99a0-49b826749d4c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a3349e4b2c85066aac537abd6244cef9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c611ab20-6dde-4abc-aec3-6d34ed167e03", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ff59aa6bc18ab62a15e26410909d46d8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1cde777a-7482-436a-b240-44610df3259c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:17 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "663dbe49240380f6ae3e041efaaffe8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6df6c63a-9dd9-4c29-8861-e531ae294af8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:18 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "33e8bb2bbea5897e737d8ea3c759760e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "757d54b0-8ef8-4cef-bffe-c2f31e2bf028", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:19 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a474a10c670647f5b3d9514cbd0cbb66", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2a73a7aa-6bb3-4a78-8dea-bd589fc796a4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d5e5d4e313b58a333fb3f2869653b854", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6743bb93-2db4-40c3-aed9-2489140c24ce", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:21 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5811f5c85a3ac389c6a180cb6d32cc67", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fc30504f-1322-4054-a9e3-c8fc8c2d5b35", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f3c027c2a174f9596eea6552746fb05f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "75346a59-0052-4303-a157-ff7d7d5d2076", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:23 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c784fc2162fb892b4b210e1393671d0d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6a1e7691-56d2-4860-af4b-57efcce5ebf3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01: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" - }, - "ResponseBody": { - "jobId": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6ec48be7c49326e09b17e950f4364f56", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d39fbbb4-38fe-4b06-b6c3-ab0444accffa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "70aa20f005ae5f6cfc36a75392466607", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b337614d-1fb4-4f9b-8284-e44beecdb83b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:26 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e96b57cd42ab5ccc1c5d2be378db9415", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dad6f837-a157-4bbd-9814-82f09416e8f4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7322b8d2acbce25e1f64715c1d8c9455", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b4ba2ad2-7522-44f4-8d5e-1a6c0d49345b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:28 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9d83e2b165cbaeab534e5450d989e620", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "94006c82-7608-4fe2-a5cc-5c697ca2eb08", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "da8192a2f224204bf888c946d0703e8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7c5bef91-f57b-48b9-a84a-5e26243d0a92", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:30 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9631d5c9f7586c4a0c741f6e570e0896", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e2b54543-1926-42f2-b7f0-7398b0b5b73a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:31 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8bb9507db90bbe319762a4429b64dde2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9d4b711f-8c54-496d-8c3e-fde42dbd3467", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0387c50f5057abc84815cdb0d3dcc9ea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "70b9b708-33b8-4b96-ab13-6f1a8ba0a715", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:33 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "80c93380b3b60f84a472fff55307d0a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1707be6c-4dd1-41b2-9b67-42d12b348591", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "jobId": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "925e3c9604862d3e880e43f6ec80ebba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "19f7490a-31d6-4072-93fb-44fb9d575f12", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "67c1b9995d9b5b2c41785ee551d25840", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ed20d238-5f8b-4a90-8217-7dcbd94d9517", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:37 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "96192544377d7b64f59bf7a8708d2323", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a0db8fec-73c6-43ec-bfab-64fce40795ca", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationTest", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/db623b2a-ab90-49f1-ba6e-8195587bbeaa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "995c44866845390c1003500da558dcb5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d35e0d1c2bff7dee53fa717758b2584", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afb28527-7d2b-4d6d-b2c5-d780717391a4", + "apim-request-id": "0673c48f-4175-4d38-87b8-5b1c0046d422", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:39 GMT", + "Date": "Thu, 23 Sep 2021 14:45:18 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": { - "jobId": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:52:39Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", + "jobId": "45269a5e-a75c-4026-bcba-e6450227aaaf", + "lastUpdateDateTime": "2021-09-23T14:45:18Z", + "createdDateTime": "2021-09-23T14:45:16Z", + "expirationDateTime": "2021-09-24T14:45:16Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationTest", @@ -2421,8 +164,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:52:39.0570658Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-09-23T14:45:18.4850851Z", "state": "succeeded", "results": { "statistics": { @@ -2448,7 +190,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -2484,6 +225,6 @@ "Variables": { "RandomSeed": "1456992479", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTest.json index 6776d12e3f14..ad8d7a0d1ac3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f6a8fe80dbc2a34086eed5da953e6dd1-7b18f0bbc324b84d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-722a2322b91221418dc8c5aeef0a510e-2bb5ae2f0cecce4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a87d416d7cb808934968999aecf2d457", "x-ms-return-client-request-id": "true" }, @@ -47,2371 +41,43 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fa5b2662-ade1-4700-be27-4cfe26d45747", - "Date": "Fri, 06 Aug 2021 06:41:51 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "apim-request-id": "e4e7f9d0-d9f9-46f4-92f3-92b3028c7521", + "Date": "Thu, 23 Sep 2021 14:45:39 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/ae06559b-8aff-4f54-94c0-e29f0ebc6e52", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "318" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "181" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/ae06559b-8aff-4f54-94c0-e29f0ebc6e52", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0aff37bc9b173e79cb77d81c11e5345", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a2d5cf6-c726-40cf-9edf-5a46163fe649", + "apim-request-id": "2af446d7-32ee-4d7b-97d0-f7004b5d0272", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41:51 GMT", + "Date": "Thu, 23 Sep 2021 14:45:39 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:51Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cb3f8bbc1ebf4cdee0fe8767ea0d5e4d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4538ec42-1652-45ee-934e-e8f1ef2d9806", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" - }, - "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ec8bf51a4a4fa3ed5a0a0c01fe11462a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4ac697a7-00a2-47de-af79-bd734f77a57b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "60de531408b35d981562efb24180888e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3e27dcca-2ce7-4036-a9e7-86e8430bf868", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cc673058669272f59d9b71b411dc4ecf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "224798c8-0e57-455a-a897-01da3acec1a8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41:55 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "96525db8fd2f119a5d2ed7ed5a3a61d9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "899fe3a2-e85d-4fe5-bff1-81042a75a546", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" - }, - "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cea87d817aaaae975e6cc21897e34b38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "44f69197-05bd-4597-a52d-e11a0c1cb0dc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e4fa2014f12d5a5f96556f648f071762", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d294fd40-2c38-490a-85bd-b30db184b296", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "943397397f343d24c5a438c33a817a79", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e2596ec8-017f-4616-ab0f-d5ed44b8a3e0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "39d99fe37d4090ac1d4d38550a331f57", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b68fe95f-78ec-4a55-a1d9-c7dd41ad35f8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ffdf5f54b7b09403fcbc1f89b99c2014", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b9a063c4-b162-43e0-abb8-90eb9b321ecd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:01 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ef80f5dade2dbc22eba276e646cf3391", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "09da25b0-5c71-43ec-8ae8-61c067057c20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:02 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "da6ee1857ba22cc99b453d845d23d781", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "76d77d8a-89fb-45ed-8868-fa9244ad026a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "157a232d2fb376293d23140d401d4d2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9ac164c1-9e5c-4b93-8106-ed3216544999", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d8038d89452d5f722b5453e8a09d5ec7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e09365e4-7df0-461c-b5ac-77860f5774af", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:05 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "22b8f4cb1d5556deb8f89d7e66bceb7e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "48d24c3d-9782-40a6-9b5d-c464ac5c7526", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d0fb11f7ff1fe853b11be95edb40d59f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fd911145-e164-44ec-88d0-c3706c71356a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4b414cc52a656bd7afad2035a8f3f86f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "411e0217-9269-40fa-b5b6-46db63a8524d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8ff1d5688da2cca8a1cf7139347f7a78", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "71d4573f-d3b4-4713-a541-48a18ea92af7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "1ab9fd239f7acc18398f2172df1e40bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "38e2b7ae-054b-4356-bed6-dc29eb480623", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "05f57922454e37fda475aa95b99d372f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "024995b6-5275-459a-8682-33fa0205bf3f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ab11a733de39c9f5bd2555136c35ed83", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "acc4c526-5158-4c6a-8c51-e1fcb5552b6b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ba17b38f7489dd29ff827604f583129c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "69318eb6-acda-4a97-b896-e4f70a1cc571", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "373ff158950c4483842c4828f0eaca6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b29e3fc6-dfa3-436c-bbd5-2ee2bc26dfe6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "060626877d85bea57e34abb768f0d439", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "11fa4fbd-64cb-495f-91de-34a4b67fa7ae", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:17 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7abab912b6f6fa772fd3355d2b00ed15", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "67eb200a-8f4f-4163-8d7a-b78c66370ab0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:18 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ce7c07b70c7dda164c80b8d7e9ccdb94", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2d1e8e42-841d-4ee9-ab7d-c48a2f2ab25e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "36160e57502fd178af0bd6b24747937d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "48d0d7f9-4510-411b-9cf2-b088b4b0da69", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" - }, - "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "61009647067306bca3e02d75fd9f1063", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b4818e2b-b3f2-4179-895b-44d7c9e54128", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "1c05a1f7b6ea67e58eab1e7135639205", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a669d22a-80b8-447a-8ed5-6372ddc8e122", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:22 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "53903bed7acc5120520f934f2202d310", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1bd1461c-4aff-49ac-8ebb-a105269085b8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a6ba73fb76419192b098d2c8e84bd03f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0beb84cf-1794-4f15-b258-56565296c6ab", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c288284dbd0e7c9781b4cadb2296458b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "065083f0-ca73-4025-bc34-c1a135d7e283", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:25 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c2760dd7eca877c3a8ffa333a8586906", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "93077287-dadf-43dd-95b5-f4619194253c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f901543f117a3d01db3e248dabb76e19", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "30ce9393-108d-41a6-b69d-15f36e3d6abc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "daf046530dd5609665101a0f1a63d428", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5e119221-db41-4d6c-879e-0a0835aa2f51", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:28 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ce9bc44b4b95c6110c38e66ac736cbf0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4f4a185c-6fa5-4d8b-87a3-ce115cfe6c98", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "62df89918f683131bea0946af7f12377", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b045b372-912f-49f2-a737-cf04005395cd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e742fc6a9f1b07843529cd9d262b982e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "97f960a5-599e-46e4-baeb-54a600aad6b2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:31 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "907e29447283bbc0936a10f4b7a6cf1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dbe6fdf3-b7a2-4589-a6c8-4dcbe465f287", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:32 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cb006e14e4f4f1d505d82c3ec1930a92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e310e6d1-ad97-43d0-94b3-5cbca3b33bea", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cd2565089373f7f33b8654b18f8f508e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1a4a6849-d285-410e-9f64-30b679809402", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b788b25acd2b603a548d8aab4582f9ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ca3b59f3-6211-45b5-8781-4700b15f7a01", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "51ec7d5f018181a77a08906d90236176", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fa0aa549-1138-44a7-93f2-b27eba0b6568", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "0ee49e87530a3a672ac579e60848b2b8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4a79cffc-dbf8-4596-bf6a-d8944ac6c2e6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "1152548cfea3580d0b073c223ccdd030", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "230b9589-a303-468c-af45-ce49e41ce4f0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a723142bea9e0cf416b127bc87c07832", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "62a4d68e-f9aa-4e3b-ac98-a9b2fd84fb23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3be0d7564fd189d2908b03031644fe5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "04584d69-8f63-4662-bdab-fb78d229785f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f3ba49f50a24a21a6045faf1d750d04a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "09fc0ccf-929c-4790-8d24-7cb5c64579f7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:41 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "65cb0a8f94ecdb5f429a1612e7f1f6d1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ea647fce-0ab6-4f77-95c4-ca8e6b081a70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3ec7c9b384064b0ebc3edb8b54e0b140", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3a6b737a-b5f5-4089-a58a-cf7e0949de2c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:43 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "0c73b8ba98796070e9dfb18af407ba6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e43cc31e-bad6-43f0-b880-744a7cc5affc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "0d3e294f92890a44fc80a8aeb9d48661", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "22f9f854-a428-421a-ad04-fde5034b4e24", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2f58d6e8ea7d1a5858675527d38457b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "27a70d92-0b8a-4b71-9e42-cc6d028494e5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2b3b6c83a3a228b6736910f8efc2a615", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "230d066b-372f-4ac3-9e28-038c60cfb243", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", + "jobId": "ae06559b-8aff-4f54-94c0-e29f0ebc6e52", + "lastUpdateDateTime": "2021-09-23T14:45:39Z", + "createdDateTime": "2021-09-23T14:45:39Z", + "expirationDateTime": "2021-09-24T14:45:39Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { @@ -2423,37 +89,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/ae06559b-8aff-4f54-94c0-e29f0ebc6e52", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "1ea150588baf65f1d024b4223c1d3777", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cb3f8bbc1ebf4cdee0fe8767ea0d5e4d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "baf36bce-42a5-438e-b45b-15c43aa7415d", + "apim-request-id": "9f995694-c0e0-4cd8-8754-bfaa2ce18799", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:48 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", + "jobId": "ae06559b-8aff-4f54-94c0-e29f0ebc6e52", + "lastUpdateDateTime": "2021-09-23T14:45:40Z", + "createdDateTime": "2021-09-23T14:45:39Z", + "expirationDateTime": "2021-09-24T14:45:39Z", "status": "running", "errors": [], "displayName": "NA", @@ -2466,80 +126,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/ae06559b-8aff-4f54-94c0-e29f0ebc6e52", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4d2af4295a9844be1f2fbb14da5f2a96", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ec8bf51a4a4fa3ed5a0a0c01fe11462a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37224c74-1ff6-46cf-82a0-026bf154feed", + "apim-request-id": "5ea73d9e-e0bb-44e0-bd55-338992c34768", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:49 GMT", + "Date": "Thu, 23 Sep 2021 14:45:42 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": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "82ce3fc038e2f8047bd55b7eee94eb55", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ad20032b-1d01-426a-b584-11db1692ad6c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", + "jobId": "ae06559b-8aff-4f54-94c0-e29f0ebc6e52", + "lastUpdateDateTime": "2021-09-23T14:45:40Z", + "createdDateTime": "2021-09-23T14:45:39Z", + "expirationDateTime": "2021-09-24T14:45:39Z", "status": "running", "errors": [], "displayName": "NA", @@ -2552,37 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/ae06559b-8aff-4f54-94c0-e29f0ebc6e52", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "fbcf98325998fd7c915cfe80cfdc8b70", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "60de531408b35d981562efb24180888e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61ae8028-829d-43e5-9acd-e65850eceadc", + "apim-request-id": "162d209e-d885-437d-bda0-ff7c8c8f97a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:51 GMT", + "Date": "Thu, 23 Sep 2021 14:45:43 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": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", + "jobId": "ae06559b-8aff-4f54-94c0-e29f0ebc6e52", + "lastUpdateDateTime": "2021-09-23T14:45:40Z", + "createdDateTime": "2021-09-23T14:45:39Z", + "expirationDateTime": "2021-09-24T14:45:39Z", "status": "running", "errors": [], "displayName": "NA", @@ -2595,37 +200,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/ae06559b-8aff-4f54-94c0-e29f0ebc6e52", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "fc611ef9b44ef095ef31d2c2ff40558b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc673058669272f59d9b71b411dc4ecf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "262a0f21-5949-493b-9051-7fe20ed63f3e", + "apim-request-id": "2dac0c25-2ce6-43f8-a464-89b8b1df86a6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:52 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", + "jobId": "ae06559b-8aff-4f54-94c0-e29f0ebc6e52", + "lastUpdateDateTime": "2021-09-23T14:45:40Z", + "createdDateTime": "2021-09-23T14:45:39Z", + "expirationDateTime": "2021-09-24T14:45:39Z", "status": "running", "errors": [], "displayName": "NA", @@ -2638,37 +237,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/ae06559b-8aff-4f54-94c0-e29f0ebc6e52", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "42e265432e9067fec3d1f1863a84299e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "96525db8fd2f119a5d2ed7ed5a3a61d9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ea583fc-459f-4a9d-bbca-86a08ad5cecc", + "apim-request-id": "ad1abe22-d192-4b9b-b262-447153a8c7c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:53 GMT", + "Date": "Thu, 23 Sep 2021 14:45:45 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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:42:53Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", + "jobId": "ae06559b-8aff-4f54-94c0-e29f0ebc6e52", + "lastUpdateDateTime": "2021-09-23T14:45:44Z", + "createdDateTime": "2021-09-23T14:45:39Z", + "expirationDateTime": "2021-09-24T14:45:39Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -2679,43 +272,42 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:42:53.9739447Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:45:44.551995Z", "state": "succeeded", "results": { "documents": [ { "id": "0", "sentences": [ - { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9390035831461341, - "offset": 0, - "length": 230 - }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.940388196563969, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", "rankScore": 1.0, - "offset": 470, - "length": 160 + "offset": 2419, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -2724,34 +316,34 @@ "id": "1", "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, - "offset": 460, - "length": 224 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.655939479529141, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.48334324562219255, - "offset": 865, - "length": 41 + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 } ], "warnings": [] @@ -2769,6 +361,6 @@ "Variables": { "RandomSeed": "721611658", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTestAsync.json index f3478d591f64..6e6f49cc40af 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9ccca4a1db9e824aa8cd67d4c8a2edec-a8e6bbd599a8ff43-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-9a30a9aa668d614ba53ef5b3bd4a543c-095e2f1bfc95aa42-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6d5f2ae36c2f32a28821252a0ee4c14c", "x-ms-return-client-request-id": "true" }, @@ -47,48 +41,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "348f069d-5d37-465e-9dfa-041af56f7f7f", - "Date": "Fri, 06 Aug 2021 06:43:35 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "apim-request-id": "8cda4262-ba09-45ad-b609-57e237eac7f4", + "Date": "Thu, 23 Sep 2021 14:46:13 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/3b1d7c03-3d5b-4a69-b607-1e6081e0434a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "206" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "181" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/3b1d7c03-3d5b-4a69-b607-1e6081e0434a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "527d763ade69ecabff5c3ba7f9ce1a12", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83da5348-96c0-479a-b246-6df605edff87", + "apim-request-id": "d526e8ba-a1db-44b9-ad5b-d3f8ec83be69", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:35 GMT", + "Date": "Thu, 23 Sep 2021 14:46:13 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": { - "jobId": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:35Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", + "jobId": "3b1d7c03-3d5b-4a69-b607-1e6081e0434a", + "lastUpdateDateTime": "2021-09-23T14:46:14Z", + "createdDateTime": "2021-09-23T14:46:14Z", + "expirationDateTime": "2021-09-24T14:46:14Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -101,38 +89,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/3b1d7c03-3d5b-4a69-b607-1e6081e0434a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "49cea572b2dcc4e613981d27af531c4b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "702467c7-b967-4f07-ba83-073618ffdb30", + "apim-request-id": "53e3e51e-d812-41c2-9a9c-b9ef970be47a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:36 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "9" }, "ResponseBody": { - "jobId": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:35Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", - "status": "notStarted", + "jobId": "3b1d7c03-3d5b-4a69-b607-1e6081e0434a", + "lastUpdateDateTime": "2021-09-23T14:46:14Z", + "createdDateTime": "2021-09-23T14:46:14Z", + "expirationDateTime": "2021-09-24T14:46:14Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -144,37 +126,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/3b1d7c03-3d5b-4a69-b607-1e6081e0434a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff172f6780c105077e726dd230fa39b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "140413e3-d367-4c53-9290-6a476a21ba84", + "apim-request-id": "96667ec7-9929-469d-9e8e-705edc0eac7d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:37 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "9" }, "ResponseBody": { - "jobId": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", + "jobId": "3b1d7c03-3d5b-4a69-b607-1e6081e0434a", + "lastUpdateDateTime": "2021-09-23T14:46:14Z", + "createdDateTime": "2021-09-23T14:46:14Z", + "expirationDateTime": "2021-09-24T14:46:14Z", "status": "running", "errors": [], "displayName": "NA", @@ -187,295 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/3b1d7c03-3d5b-4a69-b607-1e6081e0434a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "68b81206771588708fb93fd1c1843dac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76268ef8-a63e-40cd-a072-9ed7db15f7fa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ca3ff0401ab6f1509dc9cb6944139318", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c743540d-93a2-4cb5-8a4a-4bf6d4299552", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9d20635eb39af035be8f6f08413644f9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "39b9ca0d-073b-4c68-ad08-de18a65c7204", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4092c1356fbaeb03c1c6ca4cac06437c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8e5e323c-6dc1-453c-9d8f-6049799ed243", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:41 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": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5d7226259f648d11ba4f0b26aa48b067", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a0b47027-af4c-419d-a66a-a8c25b3c07be", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8334d1845381ef5e6034dcd3e8e944b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "11cc606d-ae24-42e8-b2f4-ee9c3d5363d5", + "apim-request-id": "f156c871-3d2d-49c7-b249-299831fc92be", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:43 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "161" }, "ResponseBody": { - "jobId": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "1be3f34ce6c49595b004856a63dc4179", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6e66b6dc-4a63-4b40-9617-9a01dce8e411", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:44 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" - }, - "ResponseBody": { - "jobId": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:43Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", + "jobId": "3b1d7c03-3d5b-4a69-b607-1e6081e0434a", + "lastUpdateDateTime": "2021-09-23T14:46:17Z", + "createdDateTime": "2021-09-23T14:46:14Z", + "expirationDateTime": "2021-09-24T14:46:14Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -486,43 +198,42 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:43.9472582Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:17.3079585Z", "state": "succeeded", "results": { "documents": [ { "id": "0", "sentences": [ - { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9390035831461341, - "offset": 0, - "length": 230 - }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.940388196563969, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", "rankScore": 1.0, - "offset": 470, - "length": 160 + "offset": 2419, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -531,34 +242,34 @@ "id": "1", "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, - "offset": 460, - "length": 224 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.655939479529141, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.48334324562219255, - "offset": 865, - "length": 41 + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 } ], "warnings": [] @@ -576,6 +287,6 @@ "Variables": { "RandomSeed": "1033345447", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTest.json index 780e5bdd589b..0f091de0e8ec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-41480462d9019247b563b7a88e03010d-4d4f0db16ed35849-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-ffd6e8e1bd1dd44db893688099f29eef-45a742c9665a0241-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bfc113963668fe26b5d07e43e5ef9a18", "x-ms-return-client-request-id": "true" }, @@ -47,48 +41,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "960e1f85-0657-4a96-9160-ff3b23aad282", - "Date": "Fri, 06 Aug 2021 06:42:54 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406", + "apim-request-id": "340191b3-9d00-4ff0-99cc-9d22af33d3e7", + "Date": "Thu, 23 Sep 2021 14:45:45 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/86d88eeb-9ea9-4d89-8596-00fc6e31edf4", "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": "194" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/86d88eeb-9ea9-4d89-8596-00fc6e31edf4?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7bf84dfe1eab8869d6053557d69142cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a67b84c-fc91-4c39-ad77-ca8f4b551d13", + "apim-request-id": "a461882f-d580-4e8d-ad24-dd090b57627e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:54 GMT", + "Date": "Thu, 23 Sep 2021 14:45:45 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": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:54Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", + "jobId": "86d88eeb-9ea9-4d89-8596-00fc6e31edf4", + "lastUpdateDateTime": "2021-09-23T14:45:46Z", + "createdDateTime": "2021-09-23T14:45:45Z", + "expirationDateTime": "2021-09-24T14:45:45Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -101,38 +89,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/86d88eeb-9ea9-4d89-8596-00fc6e31edf4?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75316a4f49761d6bfa0d0d83fe3a0076", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "613f6cbc-aa73-4d5a-9c30-82169068556b", + "apim-request-id": "9ab21dee-8dcb-4f73-b035-d39277cbfa33", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:56 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:54Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", - "status": "notStarted", + "jobId": "86d88eeb-9ea9-4d89-8596-00fc6e31edf4", + "lastUpdateDateTime": "2021-09-23T14:45:46Z", + "createdDateTime": "2021-09-23T14:45:45Z", + "expirationDateTime": "2021-09-24T14:45:45Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -144,38 +126,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/86d88eeb-9ea9-4d89-8596-00fc6e31edf4?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e70eb2c015287861aa39e96301ce2824", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9488c0dc-3db5-4f4f-9431-617ba2ef112e", + "apim-request-id": "51babdbf-fb50-4c2f-82f0-94c65a62dd7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:57 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { - "jobId": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:54Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", - "status": "notStarted", + "jobId": "86d88eeb-9ea9-4d89-8596-00fc6e31edf4", + "lastUpdateDateTime": "2021-09-23T14:45:46Z", + "createdDateTime": "2021-09-23T14:45:45Z", + "expirationDateTime": "2021-09-24T14:45:45Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -187,37 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/86d88eeb-9ea9-4d89-8596-00fc6e31edf4?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7bf4b08d25bdb4a2e1da809e10e6899b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3bbdb7ab-b3d0-4d56-bf46-f55204379c84", + "apim-request-id": "73b82a2e-4870-4e40-9b37-617ad8839961", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:58 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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": "6" }, "ResponseBody": { - "jobId": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:57Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", + "jobId": "86d88eeb-9ea9-4d89-8596-00fc6e31edf4", + "lastUpdateDateTime": "2021-09-23T14:45:46Z", + "createdDateTime": "2021-09-23T14:45:45Z", + "expirationDateTime": "2021-09-24T14:45:45Z", "status": "running", "errors": [], "displayName": "NA", @@ -230,37 +200,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/86d88eeb-9ea9-4d89-8596-00fc6e31edf4?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2496bf055a823aa508b9ca3c60081c2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37644dc0-6a9c-46f1-9ece-f8b732617fbe", + "apim-request-id": "fb7d8093-808e-48c2-a376-c593f089c1fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:59 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:57Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", + "jobId": "86d88eeb-9ea9-4d89-8596-00fc6e31edf4", + "lastUpdateDateTime": "2021-09-23T14:45:46Z", + "createdDateTime": "2021-09-23T14:45:45Z", + "expirationDateTime": "2021-09-24T14:45:45Z", "status": "running", "errors": [], "displayName": "NA", @@ -273,209 +237,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/86d88eeb-9ea9-4d89-8596-00fc6e31edf4?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4ef5e9e584469bb80f59054e94c367c4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d11160f0-a7d9-422c-a6fd-f572bc37d146", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:57Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "415d4eb0033732a10bba72045a6554d9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9001f030-0d97-4582-a44e-ceef9523e7d3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:01 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": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:57Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "26b854be3af0805407fb14295457a544", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6e924196-e092-4692-b95f-5b4732e064dd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:57Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "128c0651daaae1f548c2438c11b341a9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "283084c1-9da0-4ffb-8226-1fbd6ebc4dc1", + "apim-request-id": "436395d0-4d77-4b40-a674-e1ad1490d0a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:03 GMT", + "Date": "Thu, 23 Sep 2021 14:45:51 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": "81" }, "ResponseBody": { - "jobId": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:57Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7e96b62b-7901-409e-af25-8fe93abc5406?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "408f2c04400a75d3f9dd3a3cef78ddb4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bb291fd4-eb89-47c6-bd10-2f84cdbd4969", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "178" - }, - "ResponseBody": { - "jobId": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:43:04Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", + "jobId": "86d88eeb-9ea9-4d89-8596-00fc6e31edf4", + "lastUpdateDateTime": "2021-09-23T14:45:50Z", + "createdDateTime": "2021-09-23T14:45:45Z", + "expirationDateTime": "2021-09-24T14:45:45Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -486,8 +272,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:04.0321509Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:45:50.5796424Z", "state": "succeeded", "results": { "statistics": { @@ -504,35 +289,35 @@ "transactionsCount": 8 }, "sentences": [ - { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9390035831461341, - "offset": 0, - "length": 230 - }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.940388196563969, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", "rankScore": 1.0, - "offset": 470, - "length": 160 + "offset": 2419, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -545,34 +330,34 @@ }, "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, - "offset": 460, - "length": 224 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.655939479529141, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.48334324562219255, - "offset": 865, - "length": 41 + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 } ], "warnings": [] @@ -590,6 +375,6 @@ "Variables": { "RandomSeed": "1814199441", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTestAsync.json index 2a6810474db2..971aa9f6b90a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4d03b39f3ee3d74ba2686cebebd3935c-e430eb841451df4d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-4cf518e783b64e4f9fd0debc11ab3390-3267a9c7a76d3640-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fe1d7a1a6f9ae5a039fc8ef54aff182a", "x-ms-return-client-request-id": "true" }, @@ -47,48 +41,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7268ce13-e72d-43b9-bb88-c1e1fbf3b871", - "Date": "Fri, 06 Aug 2021 06:43:44 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d", + "apim-request-id": "10437255-6acf-4ca1-9f79-d66cff5d6b00", + "Date": "Thu, 23 Sep 2021 14:46:17 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/56bc8b5f-329c-4326-8d1c-82f0f48935ea", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "256" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "205" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/56bc8b5f-329c-4326-8d1c-82f0f48935ea?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "08ea3b4ae4e0a673ea7be2927bc61d1b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91e1f1d1-3716-46db-9254-e1f3ff29d009", + "apim-request-id": "76e1ee88-723b-48a5-ba6f-38cdb348c6ff", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:44 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "10" }, "ResponseBody": { - "jobId": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:45Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", + "jobId": "56bc8b5f-329c-4326-8d1c-82f0f48935ea", + "lastUpdateDateTime": "2021-09-23T14:46:18Z", + "createdDateTime": "2021-09-23T14:46:18Z", + "expirationDateTime": "2021-09-24T14:46:18Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -101,1069 +89,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/56bc8b5f-329c-4326-8d1c-82f0f48935ea?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e3d7c4e5354315e1886b2f32a319b90e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "384b67b7-989f-48ed-9c08-61900092df02", + "apim-request-id": "332ea65e-5f57-441c-bd67-de3778688967", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:45 GMT", + "Date": "Thu, 23 Sep 2021 14:46:19 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": "20" }, "ResponseBody": { - "jobId": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:45Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "393298643a6736400676141e8d0d6973", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a638ace7-64f3-4d39-a709-e269dd6a52a6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:46 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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:45Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "851072de352815e659d57f74b44003d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a1134f5e-efb3-417a-9350-79e6e1a628c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e32ed3c2e494abb483a1dccc21c3887a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b1ae56db-2f13-4cd6-acf9-5e356b06e76e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3154bc0233092fe6b11ddf91bacb81c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e957086b-17e4-4642-b130-09cefcf5f047", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b95b437385defadfbe6401875819f396", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "608709bc-78bc-4151-ab19-e1c7e1bca9b6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f872044cd2ec8fc6ecff32760422f0b8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9b97e11e-20c0-47c2-baf8-dec89d8b3d1a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "de58161fce687c9bdd5a72a4315fd697", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6512b172-93af-4b16-8a07-9e78619e705f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b545492a8859a1d97ccbcddf5368f69c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6ea5138a-fa21-4e5a-ad98-7ed29aa3e2fb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4167497414c17d2d68f51b915f215e8c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "511233c5-a46b-4fb3-9ebe-7b3a6a444629", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ba4c9a283add965e3cb7619c01bc2874", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9ea24b2c-30cf-460c-bac5-a6c1b362440b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e730d66494f815d61cc74c636d48415a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bbeeb225-268d-456c-b82a-8bca1faf2071", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b9b6406d3b1c39bfebd10509b3917cac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5d44e22d-5e0d-4b69-a23e-532755f790bf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "892da6cd77f19494c3369e15edfa29f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4d9f7e73-417d-4049-8a42-1b04070f500f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c12f06756f05285816f6fb268fcc628a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "023069e6-17e5-44bd-baff-33a7fbbb46de", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:00 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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c696a04bb81bf669ab22f5e59da94bf0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "362418e9-214d-4aaf-b0e7-05824d9e480e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:01 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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ac9410a8bb615ea64e0472fa7b6d04f7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3c8684c0-89c6-4186-bd66-e055f9b484f3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4dca13d46264bcd99d3915e379738b6d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c70d9829-a582-459c-a053-ab4bfc54f826", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7f7e0baab5389029fa387716456e7a3e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "19cdbbf0-bac8-4ad7-8d76-c7400d2a67c3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8910fe1dfedf458c37d70f28a5c3e4db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "704aa696-5a16-46ec-b70a-24ed6d210e97", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:05 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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "6f50057885ee1fbfea3a532bebc2772e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "22914cb1-49ff-4562-9ebc-7e63d371c068", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7bc5d6be0162ac8d7e394760a601ea36", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a8e81693-d463-4771-91a5-da9f42da9186", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:07 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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3f9e9c540b1e984f3ff19fa4ab615975", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "97180c8d-9e0c-4a69-935c-daa7d2c14b42", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cf69e06069fd767877a3f1b43d5e78e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fc2d4ef6-a7af-4af0-a94e-c4b8dd6624de", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:09 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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4ed71c503724b310862d3c7161e9001d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6550de54-51fa-4ac8-95e0-51abffa342f1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", + "jobId": "56bc8b5f-329c-4326-8d1c-82f0f48935ea", + "lastUpdateDateTime": "2021-09-23T14:46:18Z", + "createdDateTime": "2021-09-23T14:46:18Z", + "expirationDateTime": "2021-09-24T14:46:18Z", "status": "running", "errors": [], "displayName": "NA", @@ -1176,37 +126,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/56bc8b5f-329c-4326-8d1c-82f0f48935ea?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c600d2df1b97ea392327c87a199a5ae0", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "393298643a6736400676141e8d0d6973", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1bf38504-ff82-4af4-9e10-b679886b1721", + "apim-request-id": "8bfd1132-0eb0-4c70-9b4b-941d37f8df75", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:12 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", + "jobId": "56bc8b5f-329c-4326-8d1c-82f0f48935ea", + "lastUpdateDateTime": "2021-09-23T14:46:18Z", + "createdDateTime": "2021-09-23T14:46:18Z", + "expirationDateTime": "2021-09-24T14:46:18Z", "status": "running", "errors": [], "displayName": "NA", @@ -1219,37 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3b814d4e-2f4a-406f-89cc-e93356a43f9d?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/56bc8b5f-329c-4326-8d1c-82f0f48935ea?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8e54b6780b892850cfb548d02c07158e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "851072de352815e659d57f74b44003d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5bd9782-0df5-4fbd-b1c6-01c36563e6f7", + "apim-request-id": "2147f473-617e-4920-a38b-3cfba94c4d4d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:13 GMT", + "Date": "Thu, 23 Sep 2021 14:46:21 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": "78" }, "ResponseBody": { - "jobId": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:44:12Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", + "jobId": "56bc8b5f-329c-4326-8d1c-82f0f48935ea", + "lastUpdateDateTime": "2021-09-23T14:46:21Z", + "createdDateTime": "2021-09-23T14:46:18Z", + "expirationDateTime": "2021-09-24T14:46:18Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -1260,8 +198,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:44:12.8773924Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:21.332996Z", "state": "succeeded", "results": { "statistics": { @@ -1278,35 +215,35 @@ "transactionsCount": 8 }, "sentences": [ - { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9230768993580877, - "offset": 0, - "length": 230 - }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.9409097160082168, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 1.0, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", - "rankScore": 0.9845923156760676, - "offset": 470, - "length": 160 + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2419, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9488625466448687, - "offset": 631, - "length": 51 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -1319,34 +256,34 @@ }, "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.9207522442308361, - "offset": 275, - "length": 184 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.8643158593781329, - "offset": 460, - "length": 224 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.6635938628532699, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.52942298887348, - "offset": 865, - "length": 41 + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 } ], "warnings": [] @@ -1364,6 +301,6 @@ "Variables": { "RandomSeed": "395657227", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTest.json index 4eb59dd206b0..4e531ccd4db3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-db04673eacb04049ba543d973381dda9-47ef89e892ad2b48-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-0dcc5ae44c4973419f6f35e5913727f2-985b9a70b059684d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f3d9198f505e19b3a58d50518164f79d", "x-ms-return-client-request-id": "true" }, @@ -47,91 +41,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "463632d0-ad01-42cf-9b1d-84da2de0c783", - "Date": "Fri, 06 Aug 2021 06:43:04 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "apim-request-id": "54f183f1-e411-432a-acde-01261b76ee4b", + "Date": "Thu, 23 Sep 2021 14:45:51 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/29c828df-cdf5-4473-926b-abddb5e17a82", "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": "204" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/29c828df-cdf5-4473-926b-abddb5e17a82", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cd73043ed1a6b229132eee9711f3380a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2541e370-8e38-437d-9978-cb22b7bd979a", + "apim-request-id": "93cc9e1b-6a1e-49ca-a9f5-8628b511b62b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:04 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:04Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5986c0a842081108e68e6679d439d993", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1f5a352b-95ce-429d-a76a-4b90f6f66e5c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "11" }, "ResponseBody": { - "jobId": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:04Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", + "jobId": "29c828df-cdf5-4473-926b-abddb5e17a82", + "lastUpdateDateTime": "2021-09-23T14:45:52Z", + "createdDateTime": "2021-09-23T14:45:52Z", + "expirationDateTime": "2021-09-24T14:45:52Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -144,252 +89,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/29c828df-cdf5-4473-926b-abddb5e17a82", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2e009dff5c37bdf8f027df30611b08b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d980a9cd-0695-4a15-bfcc-7636a7ce9ca0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:04Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c1a846549dddfc94fb62e6176ab0ded9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "667c68d1-5f31-4ea5-a7ef-1e87d1024e7f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:07 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": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:07Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "74985b540af34cd2c8c869e162d7afcb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a8309ac1-b095-4fe3-91b3-0692c517807c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:07Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8d24b586189061b5080432d575e0533f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a355ec56-1cce-4343-9233-b5a47f8c3dd9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:07Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "05db064894834abd735cf81534b39a23", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b4566cb0-86f8-4e79-bdc8-3dbaf8350bab", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:07Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b5911bb2508b3c48a5376befd7fcd6e8", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5986c0a842081108e68e6679d439d993", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "80a3adbc-33d5-4011-8ded-7443da546f85", + "apim-request-id": "7bbbb2d3-2375-406f-b2d5-733592964a01", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:11 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:07Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", + "jobId": "29c828df-cdf5-4473-926b-abddb5e17a82", + "lastUpdateDateTime": "2021-09-23T14:45:52Z", + "createdDateTime": "2021-09-23T14:45:52Z", + "expirationDateTime": "2021-09-24T14:45:52Z", "status": "running", "errors": [], "displayName": "NA", @@ -402,37 +126,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/29c828df-cdf5-4473-926b-abddb5e17a82", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5c982975a9fcf147f7da193420a02c54", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2e009dff5c37bdf8f027df30611b08b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52462a61-bcd5-4d6b-a216-8114d5fdb75e", + "apim-request-id": "0366ec55-f7f7-44d7-ab02-049f8eeacbab", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:12 GMT", + "Date": "Thu, 23 Sep 2021 14:45:54 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": { - "jobId": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:07Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", + "jobId": "29c828df-cdf5-4473-926b-abddb5e17a82", + "lastUpdateDateTime": "2021-09-23T14:45:52Z", + "createdDateTime": "2021-09-23T14:45:52Z", + "expirationDateTime": "2021-09-24T14:45:52Z", "status": "running", "errors": [], "displayName": "NA", @@ -445,37 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/29c828df-cdf5-4473-926b-abddb5e17a82", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "59230e6a9e4ef8b4bd9f5f4b28ce7276", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c1a846549dddfc94fb62e6176ab0ded9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65ea9c4a-399a-474f-bd6d-12a03537c366", + "apim-request-id": "4d42e6a9-2dc7-425c-8be6-d6cbe5ca3133", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:13 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { - "jobId": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:13Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", + "jobId": "29c828df-cdf5-4473-926b-abddb5e17a82", + "lastUpdateDateTime": "2021-09-23T14:45:55Z", + "createdDateTime": "2021-09-23T14:45:52Z", + "expirationDateTime": "2021-09-24T14:45:52Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -486,43 +198,42 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:13.8554915Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:45:55.0085048Z", "state": "succeeded", "results": { "documents": [ { "id": "1", "sentences": [ - { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9390035831461341, - "offset": 0, - "length": 230 - }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.940388196563969, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", "rankScore": 1.0, - "offset": 470, - "length": 160 + "offset": 2419, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -531,34 +242,34 @@ "id": "2", "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, - "offset": 460, - "length": 224 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.655939479529141, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.48334324562219255, - "offset": 865, - "length": 41 + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 } ], "warnings": [] @@ -576,6 +287,6 @@ "Variables": { "RandomSeed": "1847785475", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTestAsync.json index 67561bb65dfa..a111a23f8bd2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fb1e7c31b4bdc045b0e0675823187fd6-2b7f182173348446-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-3e16d64642209948a7026c76fb1edf2a-3d88b17aa1d05245-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e34ebf5d11d240721fd15b42fd686423", "x-ms-return-client-request-id": "true" }, @@ -47,48 +41,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1d9051cc-771b-4782-b012-5132243a4aaa", - "Date": "Fri, 06 Aug 2021 06:44:13 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "apim-request-id": "bd9bfac2-2326-402b-b52c-94c38302b32b", + "Date": "Thu, 23 Sep 2021 14:46:21 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/02580e0d-fa33-47fa-880d-09c855ab1076", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "230" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "210" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/02580e0d-fa33-47fa-880d-09c855ab1076", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc4928ee7d2e5170fdded73aa0582bcf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "848abdea-9c5d-41ed-9209-540f78fbd3f7", + "apim-request-id": "d4b78b06-8ae5-49cf-962c-6289a1079d96", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:13 GMT", + "Date": "Thu, 23 Sep 2021 14:46:21 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": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:14Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", + "jobId": "02580e0d-fa33-47fa-880d-09c855ab1076", + "lastUpdateDateTime": "2021-09-23T14:46:22Z", + "createdDateTime": "2021-09-23T14:46:22Z", + "expirationDateTime": "2021-09-24T14:46:22Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -101,209 +89,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/02580e0d-fa33-47fa-880d-09c855ab1076", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a74afc252d89954d7c18363abc11fb78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11d7fa04-588d-4c0c-b89d-12acb42929a1", + "apim-request-id": "66a7819b-7b40-4e49-adc5-990fc5a4ee49", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:14 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "8" }, "ResponseBody": { - "jobId": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:14Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a8c5f98b2521df804ffce6f43937a0c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0e2b4f53-dcf6-43f6-bb35-6b528190bd7b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:14Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "011d8ba5bc1dc099dab34016473695ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "218f27b4-182a-4599-bc57-a7191b45104d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:16 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": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:14Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a7ae5fe28392ffae7c6b578d47595c44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "397a209d-ef0a-42f2-97a8-526f8465494c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:17Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "30946e78faf4ce5a5f05cd6de5699719", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a5c03920-27d2-4f73-9b9f-84451602faa1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:18 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": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:17Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", + "jobId": "02580e0d-fa33-47fa-880d-09c855ab1076", + "lastUpdateDateTime": "2021-09-23T14:46:22Z", + "createdDateTime": "2021-09-23T14:46:22Z", + "expirationDateTime": "2021-09-24T14:46:22Z", "status": "running", "errors": [], "displayName": "NA", @@ -316,37 +126,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/02580e0d-fa33-47fa-880d-09c855ab1076", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "da11f967f8892235dc1d84b2640c7980", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a8c5f98b2521df804ffce6f43937a0c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6352026-d46e-4df8-a65d-f647f4f85381", + "apim-request-id": "06da155f-1302-49d6-a1ff-1f31aa9bc7f5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:19 GMT", + "Date": "Thu, 23 Sep 2021 14:46:24 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": { - "jobId": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:17Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", + "jobId": "02580e0d-fa33-47fa-880d-09c855ab1076", + "lastUpdateDateTime": "2021-09-23T14:46:22Z", + "createdDateTime": "2021-09-23T14:46:22Z", + "expirationDateTime": "2021-09-24T14:46:22Z", "status": "running", "errors": [], "displayName": "NA", @@ -359,80 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/02580e0d-fa33-47fa-880d-09c855ab1076", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d99dfb5764a1e8f804df488cb5401a12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6079a37a-364b-43a8-89c3-3a042033511d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:20 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": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:17Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4e253ed382487fbb387253d775a86952", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "011d8ba5bc1dc099dab34016473695ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de8a0403-aa41-4d0f-af5f-d71c2a0ce72e", + "apim-request-id": "c0db38a5-67d5-4cd5-91b3-1aa41112cec3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:22 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "9" }, "ResponseBody": { - "jobId": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:17Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", + "jobId": "02580e0d-fa33-47fa-880d-09c855ab1076", + "lastUpdateDateTime": "2021-09-23T14:46:22Z", + "createdDateTime": "2021-09-23T14:46:22Z", + "expirationDateTime": "2021-09-24T14:46:22Z", "status": "running", "errors": [], "displayName": "NA", @@ -445,37 +200,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/02580e0d-fa33-47fa-880d-09c855ab1076", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ea164d8cbecc03770129d5a9b0a86c9c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a7ae5fe28392ffae7c6b578d47595c44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "942b4936-40c3-41c2-8fca-00f477b55213", + "apim-request-id": "6cd88499-2e3f-4150-b028-c5234f25a2da", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:23 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "8" }, "ResponseBody": { - "jobId": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:17Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", + "jobId": "02580e0d-fa33-47fa-880d-09c855ab1076", + "lastUpdateDateTime": "2021-09-23T14:46:22Z", + "createdDateTime": "2021-09-23T14:46:22Z", + "expirationDateTime": "2021-09-24T14:46:22Z", "status": "running", "errors": [], "displayName": "NA", @@ -488,37 +237,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/02580e0d-fa33-47fa-880d-09c855ab1076", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "26de72022be7d538401ea02e1021725b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30946e78faf4ce5a5f05cd6de5699719", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a854026e-cd70-4fff-b59d-9ef10d1ea6d8", + "apim-request-id": "c03644fe-d707-463f-9018-c7700a5bf236", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:24 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { - "jobId": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:24Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", + "jobId": "02580e0d-fa33-47fa-880d-09c855ab1076", + "lastUpdateDateTime": "2021-09-23T14:46:26Z", + "createdDateTime": "2021-09-23T14:46:22Z", + "expirationDateTime": "2021-09-24T14:46:22Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -529,43 +272,42 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:44:24.0998229Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:26.992557Z", "state": "succeeded", "results": { "documents": [ { "id": "1", "sentences": [ - { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9390035831461341, - "offset": 0, - "length": 230 - }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.940388196563969, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", "rankScore": 1.0, - "offset": 470, - "length": 160 + "offset": 2419, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -574,34 +316,34 @@ "id": "2", "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, - "offset": 460, - "length": 224 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.655939479529141, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.48334324562219255, - "offset": 865, - "length": 41 + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 } ], "warnings": [] @@ -619,6 +361,6 @@ "Variables": { "RandomSeed": "2045006083", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithErrorTest.json index 8db41e4b0594..b605059c5a92 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithErrorTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "249", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a9b7934be4901949b267c2dec8cde608-bbd1f5cc03105d4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c58cb04be5d62f4787918367deb9261a-34a81786cbd49c4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a3c29a29ced609c29f6672dabe3c3d2", "x-ms-return-client-request-id": "true" }, @@ -40,42 +40,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f06d61d1-af83-40f2-a14f-8656425168e1", - "Date": "Fri, 06 Aug 2021 02:04:32 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "apim-request-id": "009f7767-aab3-400f-83d9-756846488b3e", + "Date": "Thu, 23 Sep 2021 14:45:55 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/fc3db6d6-bd16-484b-bd96-4e8a8da52ccc", "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": "202" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/fc3db6d6-bd16-484b-bd96-4e8a8da52ccc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78b7ab75536d10b830407bacb9b59147", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ddab0669-580d-4548-bf22-37b7d08e5468", + "apim-request-id": "eb14f3b4-9621-4d66-a344-b383f607d2d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:32 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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": "5" }, "ResponseBody": { - "jobId": "722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "lastUpdateDateTime": "2021-08-06T02:04:33Z", - "createdDateTime": "2021-08-06T02:04:32Z", - "expirationDateTime": "2021-08-07T02:04:32Z", + "jobId": "fc3db6d6-bd16-484b-bd96-4e8a8da52ccc", + "lastUpdateDateTime": "2021-09-23T14:45:56Z", + "createdDateTime": "2021-09-23T14:45:56Z", + "expirationDateTime": "2021-09-24T14:45:56Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -88,31 +88,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/fc3db6d6-bd16-484b-bd96-4e8a8da52ccc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8b1923c2c75eff83be1622cf51099fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7378bdb-dc39-46e5-81c7-c786838c6946", + "apim-request-id": "e8e9da20-6ca0-44c3-8177-a59fefaef712", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:33 GMT", + "Date": "Thu, 23 Sep 2021 14:45:57 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": { - "jobId": "722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "lastUpdateDateTime": "2021-08-06T02:04:34Z", - "createdDateTime": "2021-08-06T02:04:32Z", - "expirationDateTime": "2021-08-07T02:04:32Z", + "jobId": "fc3db6d6-bd16-484b-bd96-4e8a8da52ccc", + "lastUpdateDateTime": "2021-09-23T14:45:56Z", + "createdDateTime": "2021-09-23T14:45:56Z", + "expirationDateTime": "2021-09-24T14:45:56Z", "status": "running", "errors": [], "displayName": "NA", @@ -125,142 +125,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/fc3db6d6-bd16-484b-bd96-4e8a8da52ccc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "16ae28d521634f29712beaac21efa674", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4fa88b5a-9c29-4367-a989-da94af31117b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:34 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": "722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "lastUpdateDateTime": "2021-08-06T02:04:34Z", - "createdDateTime": "2021-08-06T02:04:32Z", - "expirationDateTime": "2021-08-07T02:04:32Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "18f11f64db32495db2c73d8cf18b1b20", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "507c3aa4-6a8c-4da2-b44a-ae6a20c44a8c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "lastUpdateDateTime": "2021-08-06T02:04:34Z", - "createdDateTime": "2021-08-06T02:04:32Z", - "expirationDateTime": "2021-08-07T02:04:32Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "91d681a77a061be468627649414cce4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5ea23248-1748-41f7-aa31-6d1fe896ba2a", + "apim-request-id": "03106759-18e1-48e2-b060-791da740fa4d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "lastUpdateDateTime": "2021-08-06T02:04:34Z", - "createdDateTime": "2021-08-06T02:04:32Z", - "expirationDateTime": "2021-08-07T02:04:32Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d5c7ed3b801efac7ca65649be49d5de5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ee694ab5-aa9d-46cc-ab92-a3664f7897cd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:38 GMT", + "Date": "Thu, 23 Sep 2021 14:45: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": "722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "lastUpdateDateTime": "2021-08-06T02:04:34Z", - "createdDateTime": "2021-08-06T02:04:32Z", - "expirationDateTime": "2021-08-07T02:04:32Z", + "jobId": "fc3db6d6-bd16-484b-bd96-4e8a8da52ccc", + "lastUpdateDateTime": "2021-09-23T14:45:56Z", + "createdDateTime": "2021-09-23T14:45:56Z", + "expirationDateTime": "2021-09-24T14:45:56Z", "status": "running", "errors": [], "displayName": "NA", @@ -273,105 +162,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/fc3db6d6-bd16-484b-bd96-4e8a8da52ccc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a004ca0f1419ea6d3ad6afcf64130765", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cb45a9e2-d55d-456c-b617-0151d3febce8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "lastUpdateDateTime": "2021-08-06T02:04:34Z", - "createdDateTime": "2021-08-06T02:04:32Z", - "expirationDateTime": "2021-08-07T02:04:32Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0451f2f946c42701b9dcc6a1164937cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f79de11c-c5b8-4e06-9cdd-65cacfc82932", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "lastUpdateDateTime": "2021-08-06T02:04:34Z", - "createdDateTime": "2021-08-06T02:04:32Z", - "expirationDateTime": "2021-08-07T02:04:32Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "773a91052e47263180dd9a47d0f896b7", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "18f11f64db32495db2c73d8cf18b1b20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07bb7e9b-fcd9-412a-be00-5634ec8c4876", + "apim-request-id": "00812a76-fa36-4bae-882f-5a67a26de783", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:41 GMT", + "Date": "Thu, 23 Sep 2021 14:45:59 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": "80" }, "ResponseBody": { - "jobId": "722b376a-6815-45fd-9cb1-1dfc25c58ef5", - "lastUpdateDateTime": "2021-08-06T02:04:41Z", - "createdDateTime": "2021-08-06T02:04:32Z", - "expirationDateTime": "2021-08-07T02:04:32Z", + "jobId": "fc3db6d6-bd16-484b-bd96-4e8a8da52ccc", + "lastUpdateDateTime": "2021-09-23T14:45:59Z", + "createdDateTime": "2021-09-23T14:45:56Z", + "expirationDateTime": "2021-09-24T14:45:56Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -382,8 +197,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T02:04:41.0906569Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:45:59.0865337Z", "state": "succeeded", "results": { "documents": [ @@ -424,6 +238,6 @@ "Variables": { "RandomSeed": "596565522", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithErrorTestAsync.json index c257bb362ddf..35ac47be8522 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithErrorTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "249", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-92be71421fa3cb438f23af5a672139cf-751b01f449863a45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e93017284f62fc4e842874880016c6c0-0aecbcd05b8d2a47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "13ce9a1e1dbf3bc912cb12afa6ed6bdc", "x-ms-return-client-request-id": "true" }, @@ -40,42 +40,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f645c730-7043-4168-8fe6-6b5df0d54e11", - "Date": "Fri, 06 Aug 2021 02:04:42 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "apim-request-id": "fac90d80-aff3-4a9a-a277-d4e9a04b6894", + "Date": "Thu, 23 Sep 2021 14:46:27 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/73ad1a9a-58d0-4284-9bae-889a40063a5c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "318" + "x-envoy-upstream-service-time": "206" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/73ad1a9a-58d0-4284-9bae-889a40063a5c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "194e3733083110b913cefce8b3894ee9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39f9fba6-854d-4e8b-b3cc-b995de78c786", + "apim-request-id": "71dd58e2-fb5c-4173-bd50-d330c74eb980", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:42 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "10" }, "ResponseBody": { - "jobId": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:42Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", + "jobId": "73ad1a9a-58d0-4284-9bae-889a40063a5c", + "lastUpdateDateTime": "2021-09-23T14:46:28Z", + "createdDateTime": "2021-09-23T14:46:28Z", + "expirationDateTime": "2021-09-24T14:46:28Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -88,68 +88,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/73ad1a9a-58d0-4284-9bae-889a40063a5c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba4029d3276320bcae0641b48daf3add", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86505b56-6e2d-417a-9587-51a631b71c2c", + "apim-request-id": "58a3993a-7c0f-4bfc-aa37-0ffc3dc7d8bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:42Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9f048b69d6a816ade0be00f020e08888", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2c61672d-6c3c-4681-9cc3-4aa56a900031", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:44 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:44Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", + "jobId": "73ad1a9a-58d0-4284-9bae-889a40063a5c", + "lastUpdateDateTime": "2021-09-23T14:46:28Z", + "createdDateTime": "2021-09-23T14:46:28Z", + "expirationDateTime": "2021-09-24T14:46:28Z", "status": "running", "errors": [], "displayName": "NA", @@ -162,253 +125,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/73ad1a9a-58d0-4284-9bae-889a40063a5c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7cdc297cb1ac0b787b2d6a2ac6048364", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c9528c8d-84b9-4857-ba36-ee4750004796", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:44Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "277f1e94ae84fd407c2ad9a527ccffcd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "aaa443c6-b4f2-45e3-9564-456256bbe39c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:44Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6338b97ebdd3b83113f8247a6b824fdc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a715de1d-854c-4e3f-a7f4-191dc2551aaf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:44Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "025c9b3b6061ce04e8de0082d7d2e4af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e6138450-c630-46a4-b861-5e27bde0a725", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:44Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0dac9c2e1fccd691edc6148c89c692fa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "164cbaf5-6878-417d-aa27-5469dfb90e7b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:49 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": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:44Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8b6afddbfd6f1d6cb4697bf4bcaee140", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a86b9b41-b98f-476f-9c42-304b2f30d8f3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04: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": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:44Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ce4c751441d61b100a85149b4c774521", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9f048b69d6a816ade0be00f020e08888", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e322087c-5bb9-47e0-b42c-2702a42314d6", + "apim-request-id": "1d744f07-bbeb-4f86-88e9-802272aebb2e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:51 GMT", + "Date": "Thu, 23 Sep 2021 14:46:30 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": "68" }, "ResponseBody": { - "jobId": "4112796a-0c25-420b-abdb-a53dec1303ce", - "lastUpdateDateTime": "2021-08-06T02:04:51Z", - "createdDateTime": "2021-08-06T02:04:42Z", - "expirationDateTime": "2021-08-07T02:04:42Z", + "jobId": "73ad1a9a-58d0-4284-9bae-889a40063a5c", + "lastUpdateDateTime": "2021-09-23T14:46:30Z", + "createdDateTime": "2021-09-23T14:46:28Z", + "expirationDateTime": "2021-09-24T14:46:28Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -419,8 +160,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T02:04:51.0985215Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:30.2859851Z", "state": "succeeded", "results": { "documents": [ @@ -461,6 +201,6 @@ "Variables": { "RandomSeed": "1798314847", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTest.json index 857eab478a28..d7113e271165 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10922", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-17b7982a2133b242b08ff39d1d8f7d62-9eed9edc5845b641-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-de767c7deeaad14ca8bb75275386a99b-265f3a2575b66249-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b55900c4efc4ca60da44cc16b7f84b9b", "x-ms-return-client-request-id": "true" }, @@ -48,48 +42,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "16b0c0c1-5fc8-4ffa-9e8a-64518d183183", - "Date": "Fri, 06 Aug 2021 06:43:14 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", + "apim-request-id": "edfd26ec-6955-4a03-a41d-e959a755c886", + "Date": "Thu, 23 Sep 2021 14:45:59 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/c5fee1ee-e43d-4f12-818e-07d0f5bce5d7", "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": "260" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/c5fee1ee-e43d-4f12-818e-07d0f5bce5d7", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5387e54aaf8e0fc156b6266f9825a838", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eac3c1d4-db49-4445-9bd6-cfa18dd52390", + "apim-request-id": "b8285c7a-1c6c-416c-9f53-06af99f93870", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:14 GMT", + "Date": "Thu, 23 Sep 2021 14:45:59 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": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:14Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", + "jobId": "c5fee1ee-e43d-4f12-818e-07d0f5bce5d7", + "lastUpdateDateTime": "2021-09-23T14:46:00Z", + "createdDateTime": "2021-09-23T14:45:59Z", + "expirationDateTime": "2021-09-24T14:45:59Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -102,166 +90,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/c5fee1ee-e43d-4f12-818e-07d0f5bce5d7", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87636c7d805386db16c96f5b8936f94b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1018cb32-f3a4-44ff-91f8-f16887fbd8e9", + "apim-request-id": "9174b6c5-256a-4c17-aa40-7f4accce4257", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:15 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "7" }, "ResponseBody": { - "jobId": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:14Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "18b1a8fc52ab14db3e495f0dc9f031b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "10a8df1f-f371-417b-8866-4b8bd432baa9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:14Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4a99949cc394ca4709013cc44065861f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e624cec4-b596-445d-abae-9ef67768b266", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:18 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": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:17Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f072dabc90742a8d914e480a20cdbc25", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b9e4d125-cb75-42b5-86fe-55cf590bde7b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:17Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", + "jobId": "c5fee1ee-e43d-4f12-818e-07d0f5bce5d7", + "lastUpdateDateTime": "2021-09-23T14:46:00Z", + "createdDateTime": "2021-09-23T14:45:59Z", + "expirationDateTime": "2021-09-24T14:45:59Z", "status": "running", "errors": [], "displayName": "NA", @@ -274,166 +127,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/c5fee1ee-e43d-4f12-818e-07d0f5bce5d7", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f5bfba97af9d38b760e70eaa1516d4d9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a93aafe1-8d97-428f-bc8f-5938f6bb76f4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:17Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ef513fc3417e0b40076eb8457b3da93c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "22f51b0c-4f2b-4c46-8a30-894d0d399ae2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "jobId": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:17Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "852d174491a60d82223a908c81e3157a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f29ee2cd-c1c3-42b8-96af-009ec8482f95", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:17Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e0476f7acd7c56a77ab3ed2ff672bd22", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "18b1a8fc52ab14db3e495f0dc9f031b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9cae2660-e131-48e2-99dd-6a3776689c8d", + "apim-request-id": "820a25f2-72b2-44db-88c3-34777c6353eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:23 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:17Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", + "jobId": "c5fee1ee-e43d-4f12-818e-07d0f5bce5d7", + "lastUpdateDateTime": "2021-09-23T14:46:00Z", + "createdDateTime": "2021-09-23T14:45:59Z", + "expirationDateTime": "2021-09-24T14:45:59Z", "status": "running", "errors": [], "displayName": "NA", @@ -446,37 +164,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/c5fee1ee-e43d-4f12-818e-07d0f5bce5d7", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "fe65d23d4fe93232bd44cc44b0b38a24", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4a99949cc394ca4709013cc44065861f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f15023c-cc80-4130-85d9-51bd038f037c", + "apim-request-id": "1aab1a97-f0e9-4b5e-ba4b-2a5ab82e0bb5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:24 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "73" }, "ResponseBody": { - "jobId": "7002a955-8af8-406a-9261-470fcd4394e8", - "lastUpdateDateTime": "2021-08-06T06:43:23Z", - "createdDateTime": "2021-08-06T06:43:14Z", - "expirationDateTime": "2021-08-07T06:43:14Z", + "jobId": "c5fee1ee-e43d-4f12-818e-07d0f5bce5d7", + "lastUpdateDateTime": "2021-09-23T14:46:03Z", + "createdDateTime": "2021-09-23T14:45:59Z", + "expirationDateTime": "2021-09-24T14:45:59Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -487,8 +199,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:23.8395003Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:03.1283478Z", "state": "succeeded", "results": { "documents": [ @@ -496,34 +207,34 @@ "id": "1", "sentences": [ { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", "rankScore": 1.0, - "offset": 470, - "length": 160 + "offset": 2419, + "length": 156 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.940388196563969, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9390035831461341, - "offset": 0, - "length": 230 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -532,34 +243,34 @@ "id": "2", "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", + "text": "It enables employees accustomed to working from home to continue working from home;", "rankScore": 1.0, - "offset": 0, - "length": 274 - }, - { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "offset": 1300, + "length": 83 }, { "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, + "rankScore": 0.9, "offset": 460, "length": 224 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.655939479529141, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.48334324562219255, - "offset": 865, - "length": 41 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 } ], "warnings": [] @@ -577,6 +288,6 @@ "Variables": { "RandomSeed": "2008210683", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTestAsync.json index 9eb15e0ebacd..ea30adeedf65 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10922", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f34e8cbc7f6ca64dbc698a3d925a869a-9b27daef790f7640-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-c1bd12f3749647438ba4e34fa59156ba-ea011be74d145444-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0293a97699f5d2ec1fba7df50d61fb6e", "x-ms-return-client-request-id": "true" }, @@ -48,48 +42,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cd4e6cb5-c466-4227-ac2a-ee98e1c120d6", - "Date": "Fri, 06 Aug 2021 06:44:24 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "apim-request-id": "46f3088c-48ec-4354-9b42-4fc6108285c0", + "Date": "Thu, 23 Sep 2021 14:46:30 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/633f6375-5a91-4cae-b9b3-e0fca9d30c65", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "182" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/633f6375-5a91-4cae-b9b3-e0fca9d30c65", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec215ddf4e4925438ec46a95dc1da62a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ac8976b-3768-4b35-9a3e-05f022dbb75b", + "apim-request-id": "a318c615-5c61-4898-a621-e41d262e385d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:24 GMT", + "Date": "Thu, 23 Sep 2021 14:46:30 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": { - "jobId": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:24Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", + "jobId": "633f6375-5a91-4cae-b9b3-e0fca9d30c65", + "lastUpdateDateTime": "2021-09-23T14:46:31Z", + "createdDateTime": "2021-09-23T14:46:30Z", + "expirationDateTime": "2021-09-24T14:46:30Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -102,38 +90,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/633f6375-5a91-4cae-b9b3-e0fca9d30c65", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0765e58eea10dffee922566b5cd6200b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9dc94a76-72f4-462d-9faf-3d60213eee16", + "apim-request-id": "ff884452-2b6d-41a0-924b-f639b30eea5d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:25 GMT", + "Date": "Thu, 23 Sep 2021 14:46:31 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": { - "jobId": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:24Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", - "status": "notStarted", + "jobId": "633f6375-5a91-4cae-b9b3-e0fca9d30c65", + "lastUpdateDateTime": "2021-09-23T14:46:31Z", + "createdDateTime": "2021-09-23T14:46:30Z", + "expirationDateTime": "2021-09-24T14:46:30Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -145,38 +127,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/633f6375-5a91-4cae-b9b3-e0fca9d30c65", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5e1841f7b5d2880666d74312f57f601", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df43866a-33fb-4ae0-a619-3192a19b32ff", + "apim-request-id": "fccec737-be5e-488b-9daa-a8eee1503628", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:26 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:24Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", - "status": "notStarted", + "jobId": "633f6375-5a91-4cae-b9b3-e0fca9d30c65", + "lastUpdateDateTime": "2021-09-23T14:46:31Z", + "createdDateTime": "2021-09-23T14:46:30Z", + "expirationDateTime": "2021-09-24T14:46:30Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -188,37 +164,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/633f6375-5a91-4cae-b9b3-e0fca9d30c65", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "27665314f3fbf55e5e410326f8d7c9b7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1fec8a22-61b7-405a-8299-aa6313262c0b", + "apim-request-id": "4ff4d081-7465-4436-9a88-eb52642c7bb4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:27 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:27Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", + "jobId": "633f6375-5a91-4cae-b9b3-e0fca9d30c65", + "lastUpdateDateTime": "2021-09-23T14:46:31Z", + "createdDateTime": "2021-09-23T14:46:30Z", + "expirationDateTime": "2021-09-24T14:46:30Z", "status": "running", "errors": [], "displayName": "NA", @@ -231,37 +201,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/633f6375-5a91-4cae-b9b3-e0fca9d30c65", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58755fa3d03c13cd653da1a275cdb092", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11f6d662-6b77-4094-b890-a374323dc3fb", + "apim-request-id": "b310b344-a56f-4051-bb2c-f2452da64010", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:28 GMT", + "Date": "Thu, 23 Sep 2021 14:46:35 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": "8" }, "ResponseBody": { - "jobId": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:27Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", + "jobId": "633f6375-5a91-4cae-b9b3-e0fca9d30c65", + "lastUpdateDateTime": "2021-09-23T14:46:31Z", + "createdDateTime": "2021-09-23T14:46:30Z", + "expirationDateTime": "2021-09-24T14:46:30Z", "status": "running", "errors": [], "displayName": "NA", @@ -274,209 +238,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/633f6375-5a91-4cae-b9b3-e0fca9d30c65", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0956542cf96f2b0f25eb761b7859308e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11fc2134-acc8-44ba-89bb-e99f6a2a5f59", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:27Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cf8ebca49de144c58653c2be51bb7f91", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6dc07f58-036c-4d4a-842b-0928b666d982", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:27Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a3fa7091c080a947504a32505ab29a0b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "27bf72c4-8689-488d-8ae6-2039fc6f0feb", + "apim-request-id": "fc77e943-51c9-4922-89b8-ea3967ad4d88", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:32 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { - "jobId": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:27Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b9fe130ce03f8eb18e12821b3650d96a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "795c4275-2101-439b-88a9-d42236c9e93c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:33 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": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:27Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "0789e56c8c5ee40d74e47e976b74e9d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "677efa10-6c81-4228-a51c-d10a8f8ab566", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" - }, - "ResponseBody": { - "jobId": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:33Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", + "jobId": "633f6375-5a91-4cae-b9b3-e0fca9d30c65", + "lastUpdateDateTime": "2021-09-23T14:46:36Z", + "createdDateTime": "2021-09-23T14:46:30Z", + "expirationDateTime": "2021-09-24T14:46:30Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -487,8 +273,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:44:33.936568Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:36.0950256Z", "state": "succeeded", "results": { "documents": [ @@ -496,34 +281,34 @@ "id": "1", "sentences": [ { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", "rankScore": 1.0, - "offset": 470, - "length": 160 + "offset": 2419, + "length": 156 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.940388196563969, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9390035831461341, - "offset": 0, - "length": 230 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -532,34 +317,34 @@ "id": "2", "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", + "text": "It enables employees accustomed to working from home to continue working from home;", "rankScore": 1.0, - "offset": 0, - "length": 274 - }, - { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "offset": 1300, + "length": 83 }, { "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, + "rankScore": 0.9, "offset": 460, "length": 224 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.655939479529141, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.48334324562219255, - "offset": 865, - "length": 41 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 } ], "warnings": [] @@ -577,6 +362,6 @@ "Variables": { "RandomSeed": "1656487347", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTest.json index 4ba08b787d50..827bc9367d89 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d17edccf516fd45bb1f83c33dbe004e-223af9843fc5fa48-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-242fc763400abb4fbed6334e71734b13-6266d1fba2c6c242-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b5b7af78030e9fd13422000420f3bfb1", "x-ms-return-client-request-id": "true" }, @@ -47,48 +41,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ea9be8ae-eba8-4411-8f28-bbbad9edc86a", - "Date": "Fri, 06 Aug 2021 06:43:24 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4", + "apim-request-id": "aac4a44a-7c5c-4518-b357-b7e1a11600d1", + "Date": "Thu, 23 Sep 2021 14:46:03 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f5db0950-1136-40a2-a98b-376b147c3d53", "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": "176" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f5db0950-1136-40a2-a98b-376b147c3d53?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "787f8a47014084dcb2054b10ebcfc38a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f36757a-2974-4302-bdae-23371241cd88", + "apim-request-id": "2e98053f-47a1-4def-ac99-d825db8e9e11", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:24 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:24Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", + "jobId": "f5db0950-1136-40a2-a98b-376b147c3d53", + "lastUpdateDateTime": "2021-09-23T14:46:04Z", + "createdDateTime": "2021-09-23T14:46:03Z", + "expirationDateTime": "2021-09-24T14:46:03Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -101,38 +89,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f5db0950-1136-40a2-a98b-376b147c3d53?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ec85caffbf95b7033e56eb80be0b66a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed8cb6ab-640b-4834-9fae-2630b965de65", + "apim-request-id": "1434e5b5-c63a-425c-be57-572a570afd2c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:25 GMT", + "Date": "Thu, 23 Sep 2021 14:46:04 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": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:24Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", - "status": "notStarted", + "jobId": "f5db0950-1136-40a2-a98b-376b147c3d53", + "lastUpdateDateTime": "2021-09-23T14:46:04Z", + "createdDateTime": "2021-09-23T14:46:03Z", + "expirationDateTime": "2021-09-24T14:46:03Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -144,38 +126,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f5db0950-1136-40a2-a98b-376b147c3d53?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bdedae3200527712d3330308b7c1b464", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4609234e-c83e-4bf5-b2d0-7e923ea3755d", + "apim-request-id": "c52d111b-f40a-4ebc-ac55-0d76eb0ba279", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:27 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:24Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", - "status": "notStarted", + "jobId": "f5db0950-1136-40a2-a98b-376b147c3d53", + "lastUpdateDateTime": "2021-09-23T14:46:04Z", + "createdDateTime": "2021-09-23T14:46:03Z", + "expirationDateTime": "2021-09-24T14:46:03Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -187,37 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f5db0950-1136-40a2-a98b-376b147c3d53?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c355765fa02b4bb81a23445a932478d2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14236094-a42b-4989-9a56-3b61cf099acc", + "apim-request-id": "e730e145-eafb-4e04-b823-416d77f2da59", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:28 GMT", + "Date": "Thu, 23 Sep 2021 14:46:07 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": { - "jobId": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:27Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", + "jobId": "f5db0950-1136-40a2-a98b-376b147c3d53", + "lastUpdateDateTime": "2021-09-23T14:46:04Z", + "createdDateTime": "2021-09-23T14:46:03Z", + "expirationDateTime": "2021-09-24T14:46:03Z", "status": "running", "errors": [], "displayName": "NA", @@ -230,37 +200,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f5db0950-1136-40a2-a98b-376b147c3d53?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3cdde14f05e2af374a504bc5f867a371", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4be8568-df1a-4aff-9684-6dc5ab9f181f", + "apim-request-id": "9913b095-bf73-4790-843e-f86f2e3c38db", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:29 GMT", + "Date": "Thu, 23 Sep 2021 14:46:08 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": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:27Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", + "jobId": "f5db0950-1136-40a2-a98b-376b147c3d53", + "lastUpdateDateTime": "2021-09-23T14:46:04Z", + "createdDateTime": "2021-09-23T14:46:03Z", + "expirationDateTime": "2021-09-24T14:46:03Z", "status": "running", "errors": [], "displayName": "NA", @@ -273,209 +237,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f5db0950-1136-40a2-a98b-376b147c3d53?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95590931f28a923ff6a1a32fbbb7e4ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d6dff1b-65d1-4866-b655-314af6788925", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:27Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d6b930ba77e359823fa579da54f253b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1df0ce7a-d678-4117-a08b-2f5389a1b888", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:27Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8929d27fe2cb5d47a14b46406207f492", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "57b3499a-14fe-436d-8cab-b92cbfa1bbb3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:32 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": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:27Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c70a9c6ccdaeba8e86ff55e578653d04", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7a487fe9-cbff-436b-bf73-32f78ae0712b", + "apim-request-id": "dba86eec-d7c6-4973-a720-e6feee4c8bcc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:33 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "80" }, "ResponseBody": { - "jobId": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:27Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7c4656d9-cf64-4e64-b0e0-d113808b71d4?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e8aff04e5a8ed8e3e95b35983041f737", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fde8f13f-4b8f-4aeb-80fa-a9288c588b9c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" - }, - "ResponseBody": { - "jobId": "7c4656d9-cf64-4e64-b0e0-d113808b71d4", - "lastUpdateDateTime": "2021-08-06T06:43:33Z", - "createdDateTime": "2021-08-06T06:43:24Z", - "expirationDateTime": "2021-08-07T06:43:24Z", + "jobId": "f5db0950-1136-40a2-a98b-376b147c3d53", + "lastUpdateDateTime": "2021-09-23T14:46:08Z", + "createdDateTime": "2021-09-23T14:46:03Z", + "expirationDateTime": "2021-09-24T14:46:03Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -486,8 +272,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:33.9028492Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:08.7889607Z", "state": "succeeded", "results": { "statistics": { @@ -504,35 +289,35 @@ "transactionsCount": 8 }, "sentences": [ - { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9390035831461341, - "offset": 0, - "length": 230 - }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.940388196563969, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", "rankScore": 1.0, - "offset": 470, - "length": 160 + "offset": 2419, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -545,34 +330,34 @@ }, "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, - "offset": 460, - "length": 224 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.655939479529141, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.48334324562219255, - "offset": 865, - "length": 41 + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 } ], "warnings": [] @@ -590,6 +375,6 @@ "Variables": { "RandomSeed": "1123779693", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTestAsync.json index d51a13f96438..2f305d0c9047 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a972da54b73e5249a7976ce1ecc4a6a8-8cc6ad512797e042-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-eebe7049a0c36a4881f598de711df0bd-773aa6ba971d5744-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f651d36160d378a599298ba19919e0a7", "x-ms-return-client-request-id": "true" }, @@ -47,48 +41,42 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "5388139d-ffb1-401b-8f56-ea84eaeff526", - "Date": "Fri, 06 Aug 2021 06:44:34 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790", + "apim-request-id": "b7a959f8-1abc-489a-9a6b-45ce3cf0a4d7", + "Date": "Thu, 23 Sep 2021 14:46:36 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9d32329f-e1fe-4b11-a29c-a17191df2ba0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "268" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "231" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9d32329f-e1fe-4b11-a29c-a17191df2ba0?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8f6931be6a336a1f65aba107d159126", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85a393c0-5927-4e6b-91b2-52637995d95d", + "apim-request-id": "44dc0550-1ad8-4914-8a04-4b0d0f86d9f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:34 GMT", + "Date": "Thu, 23 Sep 2021 14:46:36 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": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:34Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", + "jobId": "9d32329f-e1fe-4b11-a29c-a17191df2ba0", + "lastUpdateDateTime": "2021-09-23T14:46:37Z", + "createdDateTime": "2021-09-23T14:46:37Z", + "expirationDateTime": "2021-09-24T14:46:37Z", "status": "notStarted", "errors": [], "displayName": "NA", @@ -101,38 +89,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9d32329f-e1fe-4b11-a29c-a17191df2ba0?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d87d90c0b572211b8b6294c31d0071e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8dfbeb1d-121d-40fb-9698-573568403ec3", + "apim-request-id": "0f2bb408-a1d6-41ea-97f6-f2ce580f12b9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:35 GMT", + "Date": "Thu, 23 Sep 2021 14:46:38 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": { - "jobId": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:34Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", - "status": "notStarted", + "jobId": "9d32329f-e1fe-4b11-a29c-a17191df2ba0", + "lastUpdateDateTime": "2021-09-23T14:46:37Z", + "createdDateTime": "2021-09-23T14:46:37Z", + "expirationDateTime": "2021-09-24T14:46:37Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -144,38 +126,32 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9d32329f-e1fe-4b11-a29c-a17191df2ba0?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4036edda14fe7ba6321bff78a594fb84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f590ac2-efb1-4776-ad96-f9e62ea7025c", + "apim-request-id": "c011b052-aff0-409f-b4c4-0ef55a96d70c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:36 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:34Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", - "status": "notStarted", + "jobId": "9d32329f-e1fe-4b11-a29c-a17191df2ba0", + "lastUpdateDateTime": "2021-09-23T14:46:37Z", + "createdDateTime": "2021-09-23T14:46:37Z", + "expirationDateTime": "2021-09-24T14:46:37Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { @@ -187,37 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9d32329f-e1fe-4b11-a29c-a17191df2ba0?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09e06498089c653577d55c4051dd19f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7745022f-dbac-4f0a-920c-6dcd3a2b066a", + "apim-request-id": "16232f6d-0992-4923-8c94-f520f66b248b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:37 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:37Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", + "jobId": "9d32329f-e1fe-4b11-a29c-a17191df2ba0", + "lastUpdateDateTime": "2021-09-23T14:46:37Z", + "createdDateTime": "2021-09-23T14:46:37Z", + "expirationDateTime": "2021-09-24T14:46:37Z", "status": "running", "errors": [], "displayName": "NA", @@ -230,37 +200,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9d32329f-e1fe-4b11-a29c-a17191df2ba0?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8f36d0e850deac28e902a556b5a27bf6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b64a161-815a-47f6-a3b2-992981d1898e", + "apim-request-id": "0fe5925c-734a-47fb-ba7e-c0da85415105", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:38 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:37Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", + "jobId": "9d32329f-e1fe-4b11-a29c-a17191df2ba0", + "lastUpdateDateTime": "2021-09-23T14:46:37Z", + "createdDateTime": "2021-09-23T14:46:37Z", + "expirationDateTime": "2021-09-24T14:46:37Z", "status": "running", "errors": [], "displayName": "NA", @@ -273,209 +237,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9d32329f-e1fe-4b11-a29c-a17191df2ba0?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.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b82a10676820d14db7d0c929b8652954", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e8ae126-6bc2-4bd6-b35b-a6cc84f5f5c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:37Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d48f09026b5e48a53c341f9a62deb0d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8dadcbef-4c54-4797-acbc-07c89c8ba400", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:37Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "41d9655960b380d58365d70d87fef483", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fd63cdcc-648b-4f81-854d-0683b867c3d5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:41 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": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:37Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ab5451d8a613fc986be27bec48b26ed9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "43060935-cbf5-4404-8981-9bd3a58c9897", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:42 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": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:37Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e8758086-866a-4260-86e3-aa16cfee6790?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "52cff420e88ca1a1340f50f89397c13d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "afb63a56-620a-427e-9cf7-2fa1d02635d3", + "apim-request-id": "4dd2840b-d23b-4c36-90e3-aff767dc3d90", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:43 GMT", + "Date": "Thu, 23 Sep 2021 14:46:43 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": "98" }, "ResponseBody": { - "jobId": "e8758086-866a-4260-86e3-aa16cfee6790", - "lastUpdateDateTime": "2021-08-06T06:44:44Z", - "createdDateTime": "2021-08-06T06:44:34Z", - "expirationDateTime": "2021-08-07T06:44:34Z", + "jobId": "9d32329f-e1fe-4b11-a29c-a17191df2ba0", + "lastUpdateDateTime": "2021-09-23T14:46:42Z", + "createdDateTime": "2021-09-23T14:46:37Z", + "expirationDateTime": "2021-09-24T14:46:37Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -486,8 +272,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:44:44.0791179Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:42.1562206Z", "state": "succeeded", "results": { "statistics": { @@ -504,35 +289,35 @@ "transactionsCount": 8 }, "sentences": [ - { - "text": "No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland.", - "rankScore": 0.9390035831461341, - "offset": 0, - "length": 230 - }, { "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", - "rankScore": 0.940388196563969, + "rankScore": 0.29, "offset": 231, "length": 116 }, { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", "rankScore": 1.0, - "offset": 470, - "length": 160 + "offset": 2419, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.", + "rankScore": 0.29, + "offset": 2916, + "length": 130 } ], "warnings": [] @@ -545,34 +330,34 @@ }, "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1065, + "length": 234 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, - "offset": 460, - "length": 224 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.", - "rankScore": 0.655939479529141, - "offset": 685, - "length": 179 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 }, { - "text": "\u201CAnd then, when you\u2019re done, you\u2019re done.", - "rankScore": 0.48334324562219255, - "offset": 865, - "length": 41 + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1452, + "length": 59 } ], "warnings": [] @@ -590,6 +375,6 @@ "Variables": { "RandomSeed": "1098155344", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithDisableServiceLogs.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithDisableServiceLogs.json index 37914238bb8c..f0f300b6babe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithDisableServiceLogs.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithDisableServiceLogs.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "10909", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-176f11413fc17844850c665074ce0a58-cbd9b41093300345-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f08b8a3418e3324d8cc3e9253e041f7b-e54b0a05e7d59349-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "461669e10726ac79776bfb5a88ea135b", "x-ms-return-client-request-id": "true" }, @@ -41,672 +41,43 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b4d1cb74-7627-42e1-ab7f-6084230044be", - "Date": "Fri, 06 Aug 2021 17:23:41 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", + "apim-request-id": "0652a455-732d-40e6-a6e8-af8af566adad", + "Date": "Thu, 23 Sep 2021 14:46:09 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/47ca515a-2ba2-4663-ad7a-a14ba3fc304e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1119" + "x-envoy-upstream-service-time": "244" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/47ca515a-2ba2-4663-ad7a-a14ba3fc304e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea1be2e22b92a641fbfc7fd0768103d9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7761d130-ec89-413c-aa83-e8ade7d7b600", + "apim-request-id": "52ee0438-dc90-4c8e-8e06-077d6664bb4e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:41 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:41Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "notStarted", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d6423be8f24bc2a89baaa7c55a787219", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "85d6735d-114e-41a3-8a70-c0bafe52ff38", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:42 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7436f0e7c86eb5ce276f4a2988a836f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "49141aa8-0c69-495f-93bd-854ebfd00ee8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:43 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4c7121673da8ef1039594fe8847b4c83", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e94c6017-1197-4630-8d1b-07997a7eca89", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:44 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "86e866898f4b206b6d8caedba77f3af2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "724ece93-b0cd-4c91-a61c-2039c5cca31a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:45 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "385db1732506aa70e0463a1479e531ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0cb983c7-0e29-4877-8d31-4bcde826ad6f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23: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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "21a0c722b0c0d8aab651df1c8e3448ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fef53b49-0f18-4375-9256-a074c0ca35af", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:47 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d2745c1f141e637cf53da6055456a687", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4750303b-d2c6-4646-bb99-dfb0591b7401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "784" - }, - "ResponseBody": { - "jobId": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e0b8035a18dec331078581b546541cab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4d59f7e1-8fe5-4631-a351-02a42326e273", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "668" - }, - "ResponseBody": { - "jobId": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1cf580fe5f710e8d4a3c2b830aa48360", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b34508d1-27c4-466c-963b-b87f11b988f8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23: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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8bc258ab677b06db2ab1ca9892c71da1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "99ae7c16-2ed0-4ee7-9fa4-e6b1504d40ec", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23: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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d307fa208960fa1675aa96a2ecaeb863", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "62596809-5109-4514-8273-559f643c2d91", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:54 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ee0921029192962fa5eff1bf95f57b83", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "db292495-5e23-499e-8601-d5a44d524010", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23: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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0f628a1faf9c22ff41c715d1d1381a7c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d0b9b74b-ec37-4c82-98d9-e7edb681ee20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:56 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "709667f82ebd8f0fcb712e7197566580", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7c15f50b-f5ce-4b0a-aa1a-a04931886aae", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23: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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6283122ea94c52c622e7acca7b5ec56d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9f293cf7-1d7d-4b43-8501-e176c2b36eb2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:58 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2ec775d40b5ef0c57ad2442b818d8aea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b06539c2-6a62-415e-beb7-eecafaa4b9b5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23: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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bea29561b7b54f2fa0434ed68144146d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8c27ef45-7f66-4120-bd32-544cdcebf902", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:00 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", + "jobId": "47ca515a-2ba2-4663-ad7a-a14ba3fc304e", + "lastUpdateDateTime": "2021-09-23T14:46:10Z", + "createdDateTime": "2021-09-23T14:46:10Z", + "expirationDateTime": "2021-09-24T14:46:10Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { @@ -718,179 +89,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/47ca515a-2ba2-4663-ad7a-a14ba3fc304e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "219cc0ab378f23214c92e779649ad194", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d6423be8f24bc2a89baaa7c55a787219", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16f59346-3fbc-43a3-9647-0ca4819f815c", + "apim-request-id": "58a2faad-873b-4414-b9c9-7db3bc7dbf2b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:02 GMT", + "Date": "Thu, 23 Sep 2021 14:46:11 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e568c25c06bb1db745778d1abdef6e36", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9f6fe831-ab1b-4da0-bfd1-36d3c2be6ae1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:03 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c080d7be68f12a5b747f7122d0b6ea05", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cd1ee694-d501-4311-8db1-2f2486a1053c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:04 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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bf79b9722edba5b1097fdc17a906665d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "91ce8fe4-d560-41aa-ac60-85b638b3eb36", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8dbbb123101af4a3663e713c94954d8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d6cd29a4-69f9-4e35-83e8-2dc6c6824d61", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", + "jobId": "47ca515a-2ba2-4663-ad7a-a14ba3fc304e", + "lastUpdateDateTime": "2021-09-23T14:46:10Z", + "createdDateTime": "2021-09-23T14:46:10Z", + "expirationDateTime": "2021-09-24T14:46:10Z", "status": "running", "errors": [], "displayName": "NA", @@ -903,31 +126,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/47ca515a-2ba2-4663-ad7a-a14ba3fc304e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "03a8878dae76905a25dab7718c43806d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7436f0e7c86eb5ce276f4a2988a836f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1abcaf48-1d5b-4c41-95e3-c9e51d79ee59", + "apim-request-id": "ad2bd990-6806-4b9c-875a-ded7b9913355", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:07 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "9" }, "ResponseBody": { - "jobId": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:23:42Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", + "jobId": "47ca515a-2ba2-4663-ad7a-a14ba3fc304e", + "lastUpdateDateTime": "2021-09-23T14:46:10Z", + "createdDateTime": "2021-09-23T14:46:10Z", + "expirationDateTime": "2021-09-24T14:46:10Z", "status": "running", "errors": [], "displayName": "NA", @@ -940,31 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/47ca515a-2ba2-4663-ad7a-a14ba3fc304e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1efe14185dfa62ea1584589dbc751074", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4c7121673da8ef1039594fe8847b4c83", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "179e5ae5-da00-4f4a-91aa-485618358db2", + "apim-request-id": "4de0f734-b930-47d7-b0b3-535cb58df5fc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:08 GMT", + "Date": "Thu, 23 Sep 2021 14:46:13 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": "72" }, "ResponseBody": { - "jobId": "315286bf-201d-45b6-9213-0d37686ec34e", - "lastUpdateDateTime": "2021-08-06T17:24:07Z", - "createdDateTime": "2021-08-06T17:23:41Z", - "expirationDateTime": "2021-08-07T17:23:41Z", + "jobId": "47ca515a-2ba2-4663-ad7a-a14ba3fc304e", + "lastUpdateDateTime": "2021-09-23T14:46:13Z", + "createdDateTime": "2021-09-23T14:46:10Z", + "expirationDateTime": "2021-09-24T14:46:10Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -975,8 +198,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T17:24:07.5724281Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:13.2585303Z", "state": "succeeded", "results": { "documents": [ @@ -984,22 +206,22 @@ "id": "0", "sentences": [ { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 1.0, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", - "rankScore": 0.9845923156760676, - "offset": 470, - "length": 160 + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9488625466448687, - "offset": 631, - "length": 51 + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2419, + "length": 156 } ], "warnings": [] @@ -1008,22 +230,22 @@ "id": "1", "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.9207522442308361, - "offset": 275, - "length": 184 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.8643158593781329, - "offset": 460, - "length": 224 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 } ], "warnings": [] @@ -1041,6 +263,6 @@ "Variables": { "RandomSeed": "2018294457", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithDisableServiceLogsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithDisableServiceLogsAsync.json index bab3ddde17f0..8098520dbebb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithDisableServiceLogsAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithDisableServiceLogsAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "10909", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7d23f102e28d704caab7a4b616962434-321b56129a3d2b40-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6468c0de9750d54cbb2da31d20313f7e-b5b5d289a4f3cc46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2eb74242851ebe33c7bc432d1c2529bb", "x-ms-return-client-request-id": "true" }, @@ -41,43 +41,43 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4a19d31f-9e62-4b6f-ae29-20335f8c435b", - "Date": "Fri, 06 Aug 2021 17:24:09 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "apim-request-id": "a71684b6-efe6-4ff5-a66a-a8274a7aace8", + "Date": "Thu, 23 Sep 2021 14:46:43 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", "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": "190" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c4e3fc7528ff50a8e682973177c2556", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fcaf5761-2bb7-4855-949d-5efd11050d22", + "apim-request-id": "5129b6c2-ca67-4281-adf4-2110f612d0d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:09 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "9" }, "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", + "jobId": "743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", + "lastUpdateDateTime": "2021-09-23T14:46:43Z", + "createdDateTime": "2021-09-23T14:46:43Z", + "expirationDateTime": "2021-09-24T14:46:43Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { @@ -89,31 +89,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e195ca81f07b27925fb6d81488ce149", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10509b15-f138-49fa-88f0-0ddcce460aa8", + "apim-request-id": "a050796f-f9ed-4c4c-bb46-a3ca459a1355", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:10 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "11" }, "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", + "jobId": "743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", + "lastUpdateDateTime": "2021-09-23T14:46:43Z", + "createdDateTime": "2021-09-23T14:46:43Z", + "expirationDateTime": "2021-09-24T14:46:43Z", "status": "running", "errors": [], "displayName": "NA", @@ -126,31 +126,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "56258be4764df0f138c2a0b55cbfa64a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06375915-e728-4842-95fa-09e30c6df25e", + "apim-request-id": "3e74e7fe-f563-43dc-8d72-1dc5d8074afd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:11 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "10" }, "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", + "jobId": "743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", + "lastUpdateDateTime": "2021-09-23T14:46:43Z", + "createdDateTime": "2021-09-23T14:46:43Z", + "expirationDateTime": "2021-09-24T14:46:43Z", "status": "running", "errors": [], "displayName": "NA", @@ -163,31 +163,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c084ed96da0ca7b4c59c5694e488ad01", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68eca874-0dda-4085-b985-5f94c340fac3", + "apim-request-id": "7a4da148-9b47-4ae8-ba1f-657fd6b39b40", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:12 GMT", + "Date": "Thu, 23 Sep 2021 14: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" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", + "jobId": "743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", + "lastUpdateDateTime": "2021-09-23T14:46:43Z", + "createdDateTime": "2021-09-23T14:46:43Z", + "expirationDateTime": "2021-09-24T14:46:43Z", "status": "running", "errors": [], "displayName": "NA", @@ -200,31 +200,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b8fe087ce5731086a2816457fc35666", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c46f946c-0ba5-4114-b01e-10b4ed7f265a", + "apim-request-id": "2dbec1fe-63e4-4fef-bc26-7c001c45752d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:13 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", + "jobId": "743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", + "lastUpdateDateTime": "2021-09-23T14:46:43Z", + "createdDateTime": "2021-09-23T14:46:43Z", + "expirationDateTime": "2021-09-24T14:46:43Z", "status": "running", "errors": [], "displayName": "NA", @@ -237,697 +237,31 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210923.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5beb235420080a3dd77d91b1205c0caf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37659bab-2f75-44b4-9d13-8abaddd32870", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:14 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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7c2e9e141a30c7f2e55355e3c46f2801", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "44d4c87a-0847-4666-a391-71dcdede6ded", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:15 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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c03ff045519d66f9a384b4d93d56110e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8af6df54-6bf0-495a-bd80-bb2ac3be21f0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e030661cd9953a35312376b4cb594568", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "62e308ab-a316-4158-9f4c-9889908a76e8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:17 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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2f6c8f554c1dc312a5c7d9ab6619898e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cf8ccff7-cf9c-48a3-bd53-1a9fb4374284", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5dc74741473e6b6bbb058f79db449b49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "03847b97-daa2-4220-bc17-89a8173c907e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ae834c3fe1e9cff0536d3bce0089d318", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d77eec48-2247-4169-8667-1476b608955d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:20 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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8473e799e7920e2923007417bc99e760", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ad3def3e-9f39-4e69-a757-2a87699187f7", + "apim-request-id": "865b5722-b26d-46b1-a1e8-43f3a88426f9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:21 GMT", + "Date": "Thu, 23 Sep 2021 14:46: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": "81" }, "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1a6c8f2cdb9560a456f70ad10b9d6b31", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d862729b-5a08-49e2-89b8-4c5b73840052", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:22 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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f4df773116d157b722758ae96dd912ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fe4d223b-db4d-4926-b768-410eb610ae3e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "71a2db86b91dbe8242132e9add580285", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b5f9a40d-353f-4c94-bc31-222df2b1948a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "45e64395f3b9158fd814f81f50bbf27c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1b61ab6e-cf9a-4103-8a1d-92af3cbf42ff", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "304b4fe4fafb7714f421b1bee81d7ac9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "61cc3274-5a27-4e06-b02e-933eebf20562", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "29540572cdf392014b8c9808c1636e87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "23704430-723e-452c-9168-a4bed5dfd7dc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:27 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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8eb5b120d20d9b8a2e6e519841d12dbb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "721b96da-b1f5-4727-be1f-da6eec15773b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4bad2e9ac96617894eb8e46e610cb691", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0c2b9fd5-2a8d-4e13-aaca-b5650c6cea81", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "369d2ab2eb67a0bb7ab9fb857b68517a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "80e18482-83bc-4a02-bf9c-e3b478099c71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "936ddd5f23b65720289d3f55ed1b3922", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e54a70e4-0ea0-4fb4-9378-ea7f2dc14053", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:32 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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "16e5c0b7f633ae53720cd0adcd049ce5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "00af832c-83fd-47c3-8654-d7964a56d902", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104" - }, - "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:33Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", + "jobId": "743b7466-70f4-4a3c-8dc9-6e2a7c5a3efd", + "lastUpdateDateTime": "2021-09-23T14:46:48Z", + "createdDateTime": "2021-09-23T14:46:43Z", + "expirationDateTime": "2021-09-24T14:46:43Z", "status": "succeeded", "errors": [], "displayName": "NA", @@ -938,8 +272,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T17:24:33.2614047Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-09-23T14:46:48.220201Z", "state": "succeeded", "results": { "documents": [ @@ -947,22 +280,22 @@ "id": "0", "sentences": [ { - "text": "Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.", - "rankScore": 0.9994588075869211, - "offset": 348, - "length": 121 + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.42, + "offset": 1687, + "length": 68 }, { - "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", - "rankScore": 1.0, - "offset": 470, - "length": 160 + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.8, + "offset": 2262, + "length": 156 }, { - "text": "The smallest, Grise Fiord, has a population of 130;", - "rankScore": 0.9520915234713937, - "offset": 631, - "length": 51 + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2419, + "length": 156 } ], "warnings": [] @@ -971,22 +304,22 @@ "id": "1", "sentences": [ { - "text": "Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said.", - "rankScore": 1.0, - "offset": 0, - "length": 274 + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 460, + "length": 224 }, { - "text": "She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D", - "rankScore": 0.8865751564159182, - "offset": 275, - "length": 184 + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 }, { - "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", - "rankScore": 0.79188735026136, - "offset": 460, - "length": 224 + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 } ], "warnings": [] @@ -1004,6 +337,6 @@ "Variables": { "RandomSeed": "738228031", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceTest.json new file mode 100644 index 000000000000..d2df7283d7f6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceTest.json @@ -0,0 +1,181 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "565", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-8eaaaea07f8ee84390aa469f47a302ae-db12522bad384440-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1ca26e8c7b63919185ed9a9a0b75eca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "1", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "735e3700-fbb1-4686-994d-6271315a7be1", + "Date": "Sun, 26 Sep 2021 17:32:08 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/c4ad3f7c-75e9-4c33-b0ce-8422b5801112", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "186" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/c4ad3f7c-75e9-4c33-b0ce-8422b5801112", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbe32bdcbb742947306d871680eaa8e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "096b4414-3201-4f39-96a4-72ec0d995b42", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17: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" + }, + "ResponseBody": { + "jobId": "c4ad3f7c-75e9-4c33-b0ce-8422b5801112", + "lastUpdateDateTime": "2021-09-26T17:32:08Z", + "createdDateTime": "2021-09-26T17:32:08Z", + "expirationDateTime": "2021-09-27T17:32:08Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/c4ad3f7c-75e9-4c33-b0ce-8422b5801112", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8d956ad1340d3b555b42cd04ce1ef36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a0e6e8f-8f29-4a7d-bdbe-0d289381c79a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "84" + }, + "ResponseBody": { + "jobId": "c4ad3f7c-75e9-4c33-b0ce-8422b5801112", + "lastUpdateDateTime": "2021-09-26T17:32:09Z", + "createdDateTime": "2021-09-26T17:32:08Z", + "expirationDateTime": "2021-09-27T17:32:08Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:09.5742581Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "950420539", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceTestAsync.json new file mode 100644 index 000000000000..fddbda37ba48 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceTestAsync.json @@ -0,0 +1,181 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "565", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-4c1a1c900898594d8ef8f6de713479eb-469df7f8ff0abc41-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac31d7d45c3df805f90eee9707f047d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "1", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "4646974e-40aa-4b01-ad5a-80113cd5679c", + "Date": "Sun, 26 Sep 2021 17:32:19 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6143b3ae-b183-4aa9-808f-9d849ad4ebbe", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "202" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6143b3ae-b183-4aa9-808f-9d849ad4ebbe", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e584098cb94eb31e5d96ef0bc5cf32c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "544e271d-a439-4a6d-b5f4-fa9eac8966df", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:20 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": "6143b3ae-b183-4aa9-808f-9d849ad4ebbe", + "lastUpdateDateTime": "2021-09-26T17:32:20Z", + "createdDateTime": "2021-09-26T17:32:20Z", + "expirationDateTime": "2021-09-27T17:32:20Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6143b3ae-b183-4aa9-808f-9d849ad4ebbe", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1d280b0e380cce36ab0945141679f19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9d9a958-bd1c-495f-a5e8-6e9c9e1875e1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:21 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": "6143b3ae-b183-4aa9-808f-9d849ad4ebbe", + "lastUpdateDateTime": "2021-09-26T17:32:20Z", + "createdDateTime": "2021-09-26T17:32:20Z", + "expirationDateTime": "2021-09-27T17:32:20Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:20.7472078Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "509284946", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceWithStatisticsTest.json new file mode 100644 index 000000000000..7fdfd4b4a7c5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceWithStatisticsTest.json @@ -0,0 +1,195 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "565", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-4b841a0b3c90db4aadf71491c216cc5b-b09e76edac232245-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba3620aefc61074acb4fe9cab355c3c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "1", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "d0014491-8be7-40fa-a134-6aa052d44642", + "Date": "Sun, 26 Sep 2021 17:32:10 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/453b037f-9ddc-4fe7-bf47-c625a2f1ae15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "193" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/453b037f-9ddc-4fe7-bf47-c625a2f1ae15?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22fba8cbc4b5fffd8f4e5c9b86daecae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "023b144d-0152-4f50-9f85-953c657510ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32: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": "453b037f-9ddc-4fe7-bf47-c625a2f1ae15", + "lastUpdateDateTime": "2021-09-26T17:32:10Z", + "createdDateTime": "2021-09-26T17:32:10Z", + "expirationDateTime": "2021-09-27T17:32:10Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/453b037f-9ddc-4fe7-bf47-c625a2f1ae15?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21dc23bdc6789a6d1abda6f78388f37d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9e662b98-91a2-41df-a9a9-17d47cced514", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "112" + }, + "ResponseBody": { + "jobId": "453b037f-9ddc-4fe7-bf47-c625a2f1ae15", + "lastUpdateDateTime": "2021-09-26T17:32:11Z", + "createdDateTime": "2021-09-26T17:32:10Z", + "expirationDateTime": "2021-09-27T17:32:10Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:11.6404996Z", + "state": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "0", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "statistics": { + "charactersCount": 121, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "statistics": { + "charactersCount": 158, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1514718643", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceWithStatisticsTestAsync.json new file mode 100644 index 000000000000..a5191c041c03 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceWithStatisticsTestAsync.json @@ -0,0 +1,195 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "565", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-9309e663dd9df64c82803fc76457ffa4-27f842411826f74d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fb470c4efdb714e83e72fd3b5277211", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "1", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "978adeb5-8997-4333-88a0-43ad1090dbf6", + "Date": "Sun, 26 Sep 2021 17:32:21 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/5351525b-2710-4828-92e0-d890761da9b8", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "211" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/5351525b-2710-4828-92e0-d890761da9b8?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b9acf37409e542ab340bb029525d96c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a1165fe2-836f-4024-89b5-e8a6b287cb9c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:21 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": "5351525b-2710-4828-92e0-d890761da9b8", + "lastUpdateDateTime": "2021-09-26T17:32:22Z", + "createdDateTime": "2021-09-26T17:32:21Z", + "expirationDateTime": "2021-09-27T17:32:21Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/5351525b-2710-4828-92e0-d890761da9b8?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b662db5877d6ebea76ce2790f66c3ace", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "009c7c72-d642-43d4-a9d0-1e59a6d78ae6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "124" + }, + "ResponseBody": { + "jobId": "5351525b-2710-4828-92e0-d890761da9b8", + "lastUpdateDateTime": "2021-09-26T17:32:22Z", + "createdDateTime": "2021-09-26T17:32:21Z", + "expirationDateTime": "2021-09-27T17:32:21Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:22.6583724Z", + "state": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "0", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "statistics": { + "charactersCount": 121, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "statistics": { + "charactersCount": 158, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "781880466", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchTest.json new file mode 100644 index 000000000000..6c74a016b30d --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchTest.json @@ -0,0 +1,181 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "565", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-887e3cee6a09bf4e89351419e458beb7-22d633833fb60045-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed91ee508cd9b29afc6d59631ae178b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "2", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "275734d2-f6f8-4cfd-beee-05a664548389", + "Date": "Sun, 26 Sep 2021 17:32:13 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9470fc12-ef13-47bf-a768-5b38bafb21e9", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "224" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9470fc12-ef13-47bf-a768-5b38bafb21e9", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a11a84939b857bbf89f245f4038e0384", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4714122b-2f81-4704-bf7e-c35c554c57f1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32: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": "9470fc12-ef13-47bf-a768-5b38bafb21e9", + "lastUpdateDateTime": "2021-09-26T17:32:13Z", + "createdDateTime": "2021-09-26T17:32:13Z", + "expirationDateTime": "2021-09-27T17:32:13Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/9470fc12-ef13-47bf-a768-5b38bafb21e9", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e822636173d8c47bca4dcaf660df1ba2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "69d5a6dc-8aaa-439f-872b-d9861fdf35d5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "99" + }, + "ResponseBody": { + "jobId": "9470fc12-ef13-47bf-a768-5b38bafb21e9", + "lastUpdateDateTime": "2021-09-26T17:32:14Z", + "createdDateTime": "2021-09-26T17:32:13Z", + "expirationDateTime": "2021-09-27T17:32:13Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:14.578858Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1895922638", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchTestAsync.json new file mode 100644 index 000000000000..c5559b4aca33 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchTestAsync.json @@ -0,0 +1,181 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "565", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d45d54ed400b884f811195b54377371b-551566007d4f5d4a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9645cd964117b64626a1290109f40e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "2", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "82924749-8168-4f3b-8031-d4183171caac", + "Date": "Sun, 26 Sep 2021 17:32:23 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f48106d3-5fe5-483d-b84f-e9207527c222", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "206" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f48106d3-5fe5-483d-b84f-e9207527c222", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c04ad296bfa816877b571fe8aa8ff212", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8859d8ff-5931-4185-9094-3b5fa30b535f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32: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": "f48106d3-5fe5-483d-b84f-e9207527c222", + "lastUpdateDateTime": "2021-09-26T17:32:23Z", + "createdDateTime": "2021-09-26T17:32:23Z", + "expirationDateTime": "2021-09-27T17:32:23Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f48106d3-5fe5-483d-b84f-e9207527c222", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3df144f52a5f6a90ea4bad001c9c33b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8fb0cb0f-f624-48a0-b34f-354bf521cdab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "92" + }, + "ResponseBody": { + "jobId": "f48106d3-5fe5-483d-b84f-e9207527c222", + "lastUpdateDateTime": "2021-09-26T17:32:24Z", + "createdDateTime": "2021-09-26T17:32:23Z", + "expirationDateTime": "2021-09-27T17:32:23Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:24.7092878Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1413029311", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithErrorTest.json new file mode 100644 index 000000000000..6d4ac2011c5a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithErrorTest.json @@ -0,0 +1,185 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "329", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-68820f186df12446b8105e53bfdec567-12664ef19b139544-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70c068a7efbe110baf098369f527df20", + "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": "", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e5f588d6-6da7-4a19-8e44-ca485d2972b8", + "Date": "Sun, 26 Sep 2021 17:32:14 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f566ce17-5b17-47b2-84c3-1ac77cbb93b4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "209" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f566ce17-5b17-47b2-84c3-1ac77cbb93b4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf902fc4786b4e14ba475dc60b965f2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2f2c7f6f-149f-45b6-be31-03708dfb3d1f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:14 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": "f566ce17-5b17-47b2-84c3-1ac77cbb93b4", + "lastUpdateDateTime": "2021-09-26T17:32:15Z", + "createdDateTime": "2021-09-26T17:32:15Z", + "expirationDateTime": "2021-09-27T17:32:15Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/f566ce17-5b17-47b2-84c3-1ac77cbb93b4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c99a6835c9257e5983fa76d9a9a5618c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3b654d46-d78a-4531-8610-26808d9b77a3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "90" + }, + "ResponseBody": { + "jobId": "f566ce17-5b17-47b2-84c3-1ac77cbb93b4", + "lastUpdateDateTime": "2021-09-26T17:32:15Z", + "createdDateTime": "2021-09-26T17:32:15Z", + "expirationDateTime": "2021-09-27T17:32:15Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:15.5880863Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 0.3 + }, + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1470538452", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithErrorTestAsync.json new file mode 100644 index 000000000000..44575918c7a3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithErrorTestAsync.json @@ -0,0 +1,185 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "329", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-13cdbb9c3ba9064fa5ef49403fae0d58-851fb3aff7d1f744-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6558376474b3cb63b9908dd07475c920", + "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": "", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "548fc54a-4693-4052-b59e-3fb3a24bb53d", + "Date": "Sun, 26 Sep 2021 17:32:25 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/3a784633-475f-4bfc-b67b-a1228b28a7f4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "196" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/3a784633-475f-4bfc-b67b-a1228b28a7f4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c902629aae510b96c6d2d747ee97870f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1be74f73-ce03-4bc2-b85e-61b0335e0495", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32: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": "3a784633-475f-4bfc-b67b-a1228b28a7f4", + "lastUpdateDateTime": "2021-09-26T17:32:25Z", + "createdDateTime": "2021-09-26T17:32:25Z", + "expirationDateTime": "2021-09-27T17:32:25Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/3a784633-475f-4bfc-b67b-a1228b28a7f4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8695dd79305e78c8787a2d2385a3493d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "687645ee-8bc1-4fd3-a97f-f4d496287fe0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:26 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": "3a784633-475f-4bfc-b67b-a1228b28a7f4", + "lastUpdateDateTime": "2021-09-26T17:32:25Z", + "createdDateTime": "2021-09-26T17:32:25Z", + "expirationDateTime": "2021-09-27T17:32:25Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:25.6807717Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 0.3 + }, + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1335292864", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithStatisticsTest.json new file mode 100644 index 000000000000..16e564287284 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithStatisticsTest.json @@ -0,0 +1,195 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "565", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-130575d4743be84d879107a750889826-147a216cad977a40-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43bb241bd38a8b58749a66594cad84ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "2", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e9fd062e-f749-44fd-aeea-aa173bc5d370", + "Date": "Sun, 26 Sep 2021 17:32:16 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/071f898a-5b56-4062-a18f-b3b1a19f348c", + "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://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/071f898a-5b56-4062-a18f-b3b1a19f348c?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2838ce646aa3a0a60444d02228347b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "29037f25-0182-4508-93a4-5e687cbc61f6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17: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" + }, + "ResponseBody": { + "jobId": "071f898a-5b56-4062-a18f-b3b1a19f348c", + "lastUpdateDateTime": "2021-09-26T17:32:17Z", + "createdDateTime": "2021-09-26T17:32:16Z", + "expirationDateTime": "2021-09-27T17:32:16Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/071f898a-5b56-4062-a18f-b3b1a19f348c?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed413ddad190926242abcda569532c02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "59a16fb9-83af-4573-b64a-9747b5aa4c1f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "119" + }, + "ResponseBody": { + "jobId": "071f898a-5b56-4062-a18f-b3b1a19f348c", + "lastUpdateDateTime": "2021-09-26T17:32:17Z", + "createdDateTime": "2021-09-26T17:32:16Z", + "expirationDateTime": "2021-09-27T17:32:16Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:17.6081578Z", + "state": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "1", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "statistics": { + "charactersCount": 121, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "2", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "statistics": { + "charactersCount": 158, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "884629089", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithStatisticsTestAsync.json new file mode 100644 index 000000000000..78997bfb95bb --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithStatisticsTestAsync.json @@ -0,0 +1,152 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "565", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-8135ee7f51ca0343ac6f27a821fccca5-84b81837399c8445-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c8be6aa35e8db5723a8c915994557b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "2", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2e2cc6f2-0d26-44a3-8de5-77a37430f005", + "Date": "Sun, 26 Sep 2021 17:32:26 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6f49993b-a337-4871-9f72-4a3ad40e6992", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "198" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/6f49993b-a337-4871-9f72-4a3ad40e6992?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ebd3431940a663a14ca52143b4f08e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff5e2bb7-b8c9-4fb3-b691-96edace4df83", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:27 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": "6f49993b-a337-4871-9f72-4a3ad40e6992", + "lastUpdateDateTime": "2021-09-26T17:32:27Z", + "createdDateTime": "2021-09-26T17:32:27Z", + "expirationDateTime": "2021-09-27T17:32:27Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:27.7779344Z", + "state": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "1", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "statistics": { + "charactersCount": 121, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "2", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "statistics": { + "charactersCount": 158, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1016445064", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithDisableServiceLogs.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithDisableServiceLogs.json new file mode 100644 index 000000000000..f8325e87a0ad --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithDisableServiceLogs.json @@ -0,0 +1,182 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "586", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-f240322944621e489026c5ccd2fa08c9-6d3b84f8b3da194d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f21dc45adab5285a64e5f6a3330c880", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "1", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926", + "loggingOptOut": true + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "258609ec-0f5d-4b4d-bfd9-70a4f405e000", + "Date": "Sun, 26 Sep 2021 17:32:18 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8964bf50-e305-4d64-876f-d95388fdd572", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "219" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8964bf50-e305-4d64-876f-d95388fdd572", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff1aaecc484e98e492be893eee730cff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "12a06b99-51c2-474e-b9e2-e7cc2413ae9e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32: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": "8964bf50-e305-4d64-876f-d95388fdd572", + "lastUpdateDateTime": "2021-09-26T17:32:18Z", + "createdDateTime": "2021-09-26T17:32:18Z", + "expirationDateTime": "2021-09-27T17:32:18Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/8964bf50-e305-4d64-876f-d95388fdd572", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "724033f50909ab7c83b8b380157c4e98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "46ea45fb-2d49-4000-b845-343353090a9c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "142" + }, + "ResponseBody": { + "jobId": "8964bf50-e305-4d64-876f-d95388fdd572", + "lastUpdateDateTime": "2021-09-26T17:32:19Z", + "createdDateTime": "2021-09-26T17:32:18Z", + "expirationDateTime": "2021-09-27T17:32:18Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:19.6486324Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "771278001", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithDisableServiceLogsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithDisableServiceLogsAsync.json new file mode 100644 index 000000000000..6e202b60c8d7 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithDisableServiceLogsAsync.json @@ -0,0 +1,182 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "586", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-25bad278bc2bd743a652bfd7fd45523a-05294bf6d21c6b48-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecd911dcce9a9042e758218e4322842c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "I need a reservation for an indoor restaurant in China. Please don\u0027t stop the music. Play music and add it to my playlist", + "language": "en" + }, + { + "id": "1", + "text": "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926", + "loggingOptOut": true + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "d77825a6-65ec-45a4-8d16-46506e51ba33", + "Date": "Sun, 26 Sep 2021 17:32:27 GMT", + "operation-location": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/dc38fb7a-3352-4104-b53f-0baf6d410552", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "185" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/dc38fb7a-3352-4104-b53f-0baf6d410552", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b37d9e0e15ff8f4109b6fd0e2f5f312", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c6c58ad8-f4f6-4c6f-b060-bada3ad7f9a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32: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": "dc38fb7a-3352-4104-b53f-0baf6d410552", + "lastUpdateDateTime": "2021-09-26T17:32:28Z", + "createdDateTime": "2021-09-26T17:32:28Z", + "expirationDateTime": "2021-09-27T17:32:28Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://cognitiveweppe.azure-api.net/text/analytics/v3.2-preview.2/analyze/jobs/dc38fb7a-3352-4104-b53f-0baf6d410552", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210926.1", + "(.NET 5.0.10; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "296ecf084313a922adfe76ec641a2184", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e011a18-6e97-4567-8fa6-c7cc4f31da26", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 26 Sep 2021 17:32:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "68" + }, + "ResponseBody": { + "jobId": "dc38fb7a-3352-4104-b53f-0baf6d410552", + "lastUpdateDateTime": "2021-09-26T17:32:28Z", + "createdDateTime": "2021-09-26T17:32:28Z", + "expirationDateTime": "2021-09-27T17:32:28Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-09-26T17:32:28.7995214Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classification": { + "category": "BookRestaurant", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.57 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "659c1851-be0b-4142-b12a-087da9785926", + "deploymentName": "659c1851-be0b-4142-b12a-087da9785926" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "516461458", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveweppe.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SingleCategoryClassifyTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SingleCategoryClassifyTests.cs new file mode 100644 index 000000000000..be8c64f49107 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SingleCategoryClassifyTests.cs @@ -0,0 +1,261 @@ +// 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.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Tests +{ + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_2)] + public class SingleCategoryClassifyTests : TextAnalyticsClientLiveTestBase + { + public SingleCategoryClassifyTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersion serviceVersion) + : base(isAsync, serviceVersion) + { + } + + private const string SingleCategoryClassifyDocument1 = + "I need a reservation for an indoor restaurant in China. Please don't stop the music. Play music and add it to my playlist"; + + private const string SingleCategoryClassifyDocument2 = + "David Schmidt, senior vice president--Food Safety, International Food Information Council (IFIC), Washington, D.C., discussed the physical activity component."; + + private static readonly List s_singleCategoryClassifyBatchConvenienceDocuments = new List + { + SingleCategoryClassifyDocument1, + SingleCategoryClassifyDocument2 + }; + + private static List s_singleCategoryClassifyBatchDocuments = new List + { + new TextDocumentInput("1", SingleCategoryClassifyDocument1) + { + Language = "en", + }, + new TextDocumentInput("2", SingleCategoryClassifyDocument2) + { + Language = "en", + } + }; + + [RecordedTest] + public async Task SingleCategoryClassifyWithDisableServiceLogs() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() { new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) { DisableServiceLogs = true } } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_singleCategoryClassifyBatchConvenienceDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection singleCategoryClassifyActionsResults = resultCollection.SingleCategoryClassifyResults; + + Assert.IsNotNull(singleCategoryClassifyActionsResults); + Assert.AreEqual(2, singleCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults.Count); + } + + [RecordedTest] + public async Task SingleCategoryClassifyBatchWithErrorTest() + { + TextAnalyticsClient client = GetClient(); + + var documents = new List + { + "Subject is taking 100mg of ibuprofen twice daily", + "", + }; + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() + { + new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(documents, batchActions, "en"); + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + List singleCategoryClassifyActions = resultCollection.SingleCategoryClassifyResults.ToList(); + + Assert.AreEqual(1, singleCategoryClassifyActions.Count); + + SingleCategoryClassifyResultCollection documentsResults = singleCategoryClassifyActions[0].DocumentsResults; + Assert.IsFalse(documentsResults[0].HasError); + Assert.IsTrue(documentsResults[1].HasError); + Assert.AreEqual(TextAnalyticsErrorCode.InvalidDocument, documentsResults[1].Error.ErrorCode.ToString()); + } + + [RecordedTest] + public async Task SingleCategoryClassifyBatchConvenienceTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() + { + new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_singleCategoryClassifyBatchConvenienceDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection singleCategoryClassifyActionsResults = resultCollection.SingleCategoryClassifyResults; + SingleCategoryClassifyResultCollection singleCategoryClassifyResults = singleCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults; + + ValidateSummaryBatchResult(singleCategoryClassifyResults); + } + + [RecordedTest] + public async Task SingleCategoryClassifyBatchConvenienceWithStatisticsTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() + { + new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) + } + }; + + AnalyzeActionsOptions options = new AnalyzeActionsOptions() + { + IncludeStatistics = true + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_singleCategoryClassifyBatchConvenienceDocuments, batchActions, "en", options); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection singleCategoryClassifyActionsResults = resultCollection.SingleCategoryClassifyResults; + SingleCategoryClassifyResultCollection singleCategoryClassifyResults = singleCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults; + + ValidateSummaryBatchResult(singleCategoryClassifyResults, includeStatistics : true); + } + + [RecordedTest] + public async Task SingleCategoryClassifyBatchTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() + { + new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_singleCategoryClassifyBatchDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection singleCategoryClassifyActionsResults = resultCollection.SingleCategoryClassifyResults; + SingleCategoryClassifyResultCollection singleCategoryClassifyResults = singleCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults; + + ValidateSummaryBatchResult(singleCategoryClassifyResults); + } + + [RecordedTest] + public async Task SingleCategoryClassifyBatchWithStatisticsTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() + { + new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) + } + }; + + AnalyzeActionsOptions options = new AnalyzeActionsOptions() + { + IncludeStatistics = true + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_singleCategoryClassifyBatchDocuments, batchActions, options); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection singleCategoryClassifyActionsResults = resultCollection.SingleCategoryClassifyResults; + SingleCategoryClassifyResultCollection singleCategoryClassifyResults = singleCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults; + + ValidateSummaryBatchResult(singleCategoryClassifyResults, includeStatistics: true); + } + + private void ValidateSummaryDocumentResult(ClassificationCategory classification) + { + Assert.GreaterOrEqual(classification.ConfidenceScore, 0); + Assert.LessOrEqual(classification.ConfidenceScore, 1); + Assert.NotNull(classification.Category); + } + + private void ValidateSummaryBatchResult(SingleCategoryClassifyResultCollection results, bool includeStatistics = false) + { + Assert.AreEqual(results.ProjectName, TestEnvironment.SingleClassificationProjectName); + Assert.AreEqual(results.DeploymentName, TestEnvironment.SingleClassificationDeploymentName); + + if (includeStatistics) + { + Assert.IsNotNull(results.Statistics); + Assert.Greater(results.Statistics.DocumentCount, 0); + Assert.Greater(results.Statistics.TransactionCount, 0); + Assert.GreaterOrEqual(results.Statistics.InvalidDocumentCount, 0); + Assert.GreaterOrEqual(results.Statistics.ValidDocumentCount, 0); + } + else + { + Assert.IsNull(results.Statistics); + } + + foreach (SingleCategoryClassifyResult result in results) + { + Assert.That(result.Id, Is.Not.Null.And.Not.Empty); + Assert.False(result.HasError); + Assert.IsNotNull(result.Warnings); + + if (includeStatistics) + { + Assert.GreaterOrEqual(result.Statistics.CharacterCount, 0); + Assert.Greater(result.Statistics.TransactionCount, 0); + } + else + { + Assert.AreEqual(0, result.Statistics.CharacterCount); + Assert.AreEqual(0, result.Statistics.TransactionCount); + } + + ValidateSummaryDocumentResult(result.ClassificationCategory); + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsModelFactoryTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsModelFactoryTests.cs index e28f887fed25..54a064ca12aa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsModelFactoryTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsModelFactoryTests.cs @@ -136,6 +136,12 @@ public void AnalyzeActionsResult() TextAnalyticsModelFactory.AnalyzeSentimentActionResult(default, default) }; + var singleCategoryClassifyActionResults = new List() + { + TextAnalyticsModelFactory.SingleCategoryClassifyActionResult(default, default), + TextAnalyticsModelFactory.SingleCategoryClassifyActionResult(default, default) + }; + var actionsResult = TextAnalyticsModelFactory.AnalyzeActionsResult( extractKeyPhrasesActionResults, recognizeEntitiesActionResults, @@ -162,7 +168,8 @@ public void AnalyzeActionsResult() recognizePiiEntitiesActionResults, recognizeLinkedEntitiesActionResults, analyzeSentimentActionResults, - extractSummaryActionResults); + extractSummaryActionResults, + singleCategoryClassifyActionResults); CollectionAssert.AreEquivalent(extractKeyPhrasesActionResults, actionsResult.ExtractKeyPhrasesResults); CollectionAssert.AreEquivalent(recognizeEntitiesActionResults, actionsResult.RecognizeEntitiesResults); @@ -170,6 +177,7 @@ public void AnalyzeActionsResult() CollectionAssert.AreEquivalent(recognizeLinkedEntitiesActionResults, actionsResult.RecognizeLinkedEntitiesResults); CollectionAssert.AreEquivalent(analyzeSentimentActionResults, actionsResult.AnalyzeSentimentResults); CollectionAssert.AreEquivalent(extractSummaryActionResults, actionsResult.ExtractSummaryResults); + CollectionAssert.AreEquivalent(singleCategoryClassifyActionResults, actionsResult.SingleCategoryClassifyResults); } [Test] diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassify.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassify.cs new file mode 100644 index 000000000000..c2df6873b201 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassify.cs @@ -0,0 +1,98 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Threading; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + public partial class TextAnalyticsSamples : SamplesBase + { + [Test] + public void SingleCategoryClassify() + { + // Create a Text Analytics client. + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + // Get input document. + string document = @"I need a reservation for an indoor restaurant in China. Please don't stop the music. Play music and add it to my playlist."; + + // Prepare analyze operation input. You can add multiple documents to this list and perform the same + // operation to all of them. + var batchDocuments = new List + { + new TextDocumentInput("1", document) + { + Language = "en", + } + }; + + // Set project and deployment names of the target model +#if SNIPPET + string projectName = ""; + string deploymentName = ""; +#else + string projectName = TestEnvironment.SingleClassificationProjectName; + string deploymentName = TestEnvironment.SingleClassificationDeploymentName; +#endif + + var singleCategoryClassifyAction = new SingleCategoryClassifyAction(projectName, deploymentName); + + TextAnalyticsActions actions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() { singleCategoryClassifyAction } + }; + + // Start analysis process. + AnalyzeActionsOperation operation = client.StartAnalyzeActions(batchDocuments, actions); + + // Wait for completion with manual polling. + TimeSpan pollingInterval = new TimeSpan(1000); + + while (true) + { + Console.WriteLine($"Status: {operation.Status}"); + operation.UpdateStatus(); + if (operation.HasCompleted) + { + break; + } + + Thread.Sleep(pollingInterval); + } + + // View operation status. + Console.WriteLine($"AnalyzeActions operation has completed"); + Console.WriteLine(); + + Console.WriteLine($"Created On : {operation.CreatedOn}"); + Console.WriteLine($"Expires On : {operation.ExpiresOn}"); + Console.WriteLine($"Id : {operation.Id}"); + Console.WriteLine($"Status : {operation.Status}"); + Console.WriteLine($"Last Modified: {operation.LastModified}"); + Console.WriteLine(); + + // View operation results. + foreach (AnalyzeActionsResult documentsInPage in operation.GetValues()) + { + IReadOnlyCollection singleClassificationActionResults = documentsInPage.SingleCategoryClassifyResults; + + foreach (SingleCategoryClassifyActionResult classificationActionResults in singleClassificationActionResults) + { + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.ClassificationCategory.Category}\" predicted with a confidence score of {documentResults.ClassificationCategory.ConfidenceScore}."); + Console.WriteLine(); + } + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyAsync.cs new file mode 100644 index 000000000000..312e3c3cc972 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyAsync.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.Threading.Tasks; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + public partial class TextAnalyticsSamples : SamplesBase + { + [Test] + public async Task SingleCategoryClassifyAsync() + { + // Create a Text Analytics client. + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + // Get input document. + string document = @"I need a reservation for an indoor restaurant in China. Please don't stop the music. Play music and add it to my playlist."; + + // Prepare analyze operation input. You can add multiple documents to this list and perform the same + // operation to all of them. + var batchDocuments = new List + { + new TextDocumentInput("1", document) + { + Language = "en", + } + }; + + // Set project and deployment names of the target model +#if SNIPPET + string projectName = ""; + string deploymentName = ""; +#else + string projectName = TestEnvironment.SingleClassificationProjectName; + string deploymentName = TestEnvironment.SingleClassificationDeploymentName; +#endif + + var singleCategoryClassifyAction = new SingleCategoryClassifyAction(projectName, deploymentName); + + TextAnalyticsActions actions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() { singleCategoryClassifyAction } + }; + + // Start analysis process. + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchDocuments, actions); + + await operation.WaitForCompletionAsync(); + + // View operation status. + Console.WriteLine($"AnalyzeActions operation has completed"); + Console.WriteLine(); + + Console.WriteLine($"Created On : {operation.CreatedOn}"); + Console.WriteLine($"Expires On : {operation.ExpiresOn}"); + Console.WriteLine($"Id : {operation.Id}"); + Console.WriteLine($"Status : {operation.Status}"); + Console.WriteLine($"Last Modified: {operation.LastModified}"); + Console.WriteLine(); + + // View operation results. + await foreach (AnalyzeActionsResult documentsInPage in operation.Value) + { + IReadOnlyCollection singleClassificationActionResults = documentsInPage.SingleCategoryClassifyResults; + + foreach (SingleCategoryClassifyActionResult classificationActionResults in singleClassificationActionResults) + { + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.ClassificationCategory.Category}\" predicted with a confidence score of {documentResults.ClassificationCategory.ConfidenceScore}."); + Console.WriteLine(); + } + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenience.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenience.cs new file mode 100644 index 000000000000..156dffef5970 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenience.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Threading; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + public partial class TextAnalyticsSamples : SamplesBase + { + [Test] + public void SingleCategoryClassifyConvenience() + { + // Create a Text Analytics client. + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + // Get input document. + string document = @"I need a reservation for an indoor restaurant in China. Please don't stop the music. Play music and add it to my playlist."; + + // Prepare analyze operation input. You can add multiple documents to this list and perform the same + // operation to all of them. + var batchInput = new List + { + document + }; + + // Set project and deployment names of the target model +#if SNIPPET + string projectName = ""; + string deploymentName = ""; +#else + string projectName = TestEnvironment.SingleClassificationProjectName; + string deploymentName = TestEnvironment.SingleClassificationDeploymentName; +#endif + + var singleCategoryClassifyAction = new SingleCategoryClassifyAction(projectName, deploymentName); + + TextAnalyticsActions actions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() { singleCategoryClassifyAction } + }; + + // Start analysis process. + AnalyzeActionsOperation operation = client.StartAnalyzeActions(batchInput, actions); + + // Wait for completion with manual polling. + TimeSpan pollingInterval = new TimeSpan(1000); + + while (true) + { + Console.WriteLine($"Status: {operation.Status}"); + operation.UpdateStatus(); + if (operation.HasCompleted) + { + break; + } + + Thread.Sleep(pollingInterval); + } + + // View operation status. + Console.WriteLine($"AnalyzeActions operation has completed"); + Console.WriteLine(); + + Console.WriteLine($"Created On : {operation.CreatedOn}"); + Console.WriteLine($"Expires On : {operation.ExpiresOn}"); + Console.WriteLine($"Id : {operation.Id}"); + Console.WriteLine($"Status : {operation.Status}"); + Console.WriteLine($"Last Modified: {operation.LastModified}"); + Console.WriteLine(); + + // View operation results. + foreach (AnalyzeActionsResult documentsInPage in operation.GetValues()) + { + IReadOnlyCollection singleClassificationActionResults = documentsInPage.SingleCategoryClassifyResults; + + foreach (SingleCategoryClassifyActionResult classificationActionResults in singleClassificationActionResults) + { + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.ClassificationCategory.Category}\" predicted with a confidence score of {documentResults.ClassificationCategory.ConfidenceScore}."); + Console.WriteLine(); + } + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenienceAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenienceAsync.cs new file mode 100644 index 000000000000..c80940617233 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenienceAsync.cs @@ -0,0 +1,88 @@ +// 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 +{ + public partial class TextAnalyticsSamples : SamplesBase + { + [Test] + public async Task SingleCategoryClassifyConvenienceAsync() + { + // Create a Text Analytics client. + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + #region Snippet:TextAnalyticsSingleCategoryClassifyAsync + // Get input document. + string document = @"I need a reservation for an indoor restaurant in China. Please don't stop the music. Play music and add it to my playlist."; + + // Prepare analyze operation input. You can add multiple documents to this list and perform the same + // operation to all of them. + var batchInput = new List + { + document + }; + + // Set project and deployment names of the target model +#if SNIPPET + string projectName = ""; + string deploymentName = ""; +#else + string projectName = TestEnvironment.SingleClassificationProjectName; + string deploymentName = TestEnvironment.SingleClassificationDeploymentName; +#endif + + var singleCategoryClassifyAction = new SingleCategoryClassifyAction(projectName, deploymentName); + + TextAnalyticsActions actions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() { singleCategoryClassifyAction } + }; + + // Start analysis process. + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchInput, actions); + + await operation.WaitForCompletionAsync(); + #endregion Snippet:TextAnalyticsSingleCategoryClassifyAsync + + #region Snippet:TextAnalyticsSingleCategoryClassifyOperationStatus + // View operation status. + Console.WriteLine($"AnalyzeActions operation has completed"); + Console.WriteLine(); + + Console.WriteLine($"Created On : {operation.CreatedOn}"); + Console.WriteLine($"Expires On : {operation.ExpiresOn}"); + Console.WriteLine($"Id : {operation.Id}"); + Console.WriteLine($"Status : {operation.Status}"); + Console.WriteLine($"Last Modified: {operation.LastModified}"); + Console.WriteLine(); + #endregion Snippet:TextAnalyticsSingleCategoryClassifyOperationStatus + + #region Snippet:TextAnalyticsSingleCategoryClassifyAsyncViewResults + // View operation results. + await foreach (AnalyzeActionsResult documentsInPage in operation.Value) + { + IReadOnlyCollection singleClassificationActionResults = documentsInPage.SingleCategoryClassifyResults; + + foreach (SingleCategoryClassifyActionResult classificationActionResults in singleClassificationActionResults) + { + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.ClassificationCategory.Category}\" predicted with a confidence score of {documentResults.ClassificationCategory.ConfidenceScore}."); + Console.WriteLine(); + } + } + } + #endregion Snippet:TextAnalyticsSingleCategoryClassifyAsyncViewResults + } + } +}