diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md b/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md index afdd4ad09157..786a77e326cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md @@ -3,6 +3,10 @@ ## 5.2.0-beta.2 (Unreleased) ### Features Added +- Adding support for three new actions in `StartAnalyzeActions`: `RecognizeCustomEntities`, `SingleCategoryClassify`, and `MultiCategoriesClassify`. The new actions allow you to use custom models to perform entity recognition and category classification. +- Added property `ActionName` to all `xxActions` input types so user can specify a name per action. If not provided, service will generate a name. +- Added property `ActionName` to all `xxActionResult` output types that displays the name of each action. +- Added suppport for multiple actions of the same type. ### Breaking Changes @@ -10,6 +14,7 @@ - `AnalyzeActionsOperation.GetValuesAsync()` and `AnalyzeHealthcareEntitiesOperation.GetValuesAsync()` are now validating that the operation has completed successfully before attempting to return any values. An `InvalidOperationException` is thrown if this is not true. ### Other Changes +- We are now targeting the service version `3.2-preview.2` API as the default instead of `3.2-preview.1`. ## 5.2.0-beta.1 (2021-08-09) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/README.md b/sdk/textanalytics/Azure.AI.TextAnalytics/README.md index cdeb37938971..cd2498ea9add 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/README.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/README.md @@ -600,6 +600,7 @@ This functionality allows running multiple actions in one or more documents. Act int docNumber = 1; foreach (RecognizeEntitiesActionResult entitiesActionResults in entitiesResults) { + Console.WriteLine($" Action name: {entitiesActionResults.ActionName}"); foreach (RecognizeEntitiesResult documentResults in entitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); 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..a11497ae0b43 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 @@ -37,9 +37,12 @@ internal AnalyzeActionsResult() { } public System.Collections.Generic.IReadOnlyCollection AnalyzeSentimentResults { get { throw null; } } public System.Collections.Generic.IReadOnlyCollection ExtractKeyPhrasesResults { get { throw null; } } public System.Collections.Generic.IReadOnlyCollection ExtractSummaryResults { get { throw null; } } + public System.Collections.Generic.IReadOnlyCollection MultiCategoryClassifyResults { get { throw null; } } + public System.Collections.Generic.IReadOnlyCollection RecognizeCustomEntitiesResults { get { throw null; } } 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 { @@ -85,6 +88,7 @@ public partial class AnalyzeSentimentAction { public AnalyzeSentimentAction() { } public AnalyzeSentimentAction(Azure.AI.TextAnalytics.AnalyzeSentimentOptions options) { } + public string ActionName { get { throw null; } set { } } public bool? DisableServiceLogs { get { throw null; } set { } } public bool? IncludeOpinionMining { get { throw null; } set { } } public string ModelVersion { get { throw null; } set { } } @@ -140,6 +144,19 @@ 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; } } + } + public partial class ClassificationCategoryCollection : System.Collections.ObjectModel.ReadOnlyCollection + { + internal ClassificationCategoryCollection() : base (default(System.Collections.Generic.IList)) { } + public System.Collections.Generic.IReadOnlyCollection Warnings { get { throw null; } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct DetectedLanguage { private readonly object _dummy; @@ -232,6 +249,7 @@ public partial class ExtractKeyPhrasesAction { public ExtractKeyPhrasesAction() { } public ExtractKeyPhrasesAction(Azure.AI.TextAnalytics.TextAnalyticsRequestOptions options) { } + public string ActionName { get { throw null; } set { } } public bool? DisableServiceLogs { get { throw null; } set { } } public string ModelVersion { get { throw null; } set { } } } @@ -254,6 +272,7 @@ internal ExtractKeyPhrasesResultCollection() : base (default(System.Collections. public partial class ExtractSummaryAction { public ExtractSummaryAction() { } + public string ActionName { get { throw null; } set { } } public bool? DisableServiceLogs { get { throw null; } set { } } public int? MaxSentenceCount { get { throw null; } set { } } public string ModelVersion { get { throw null; } set { } } @@ -420,6 +439,32 @@ public readonly partial struct LinkedEntityMatch public int Offset { get { throw null; } } public string Text { get { throw null; } } } + public partial class MultiCategoryClassifyAction + { + public MultiCategoryClassifyAction(string projectName, string deploymentName) { } + public string ActionName { get { throw null; } set { } } + public string DeploymentName { get { throw null; } } + public bool? DisableServiceLogs { get { throw null; } set { } } + public string ProjectName { get { throw null; } } + } + public partial class MultiCategoryClassifyActionResult : Azure.AI.TextAnalytics.TextAnalyticsActionResult + { + internal MultiCategoryClassifyActionResult() { } + public Azure.AI.TextAnalytics.MultiCategoryClassifyResultCollection DocumentsResults { get { throw null; } } + } + public partial class MultiCategoryClassifyResult : Azure.AI.TextAnalytics.TextAnalyticsResult + { + internal MultiCategoryClassifyResult() { } + public Azure.AI.TextAnalytics.ClassificationCategoryCollection Classifications { get { throw null; } } + public System.Collections.Generic.IReadOnlyCollection Warnings { get { throw null; } } + } + public partial class MultiCategoryClassifyResultCollection : System.Collections.ObjectModel.ReadOnlyCollection + { + internal MultiCategoryClassifyResultCollection() : 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 PiiEntity { @@ -632,10 +677,31 @@ public enum PiiEntityDomain None = 0, ProtectedHealthInformation = 1, } + public partial class RecognizeCustomEntitiesAction + { + public RecognizeCustomEntitiesAction(string projectName, string deploymentName) { } + public string ActionName { get { throw null; } set { } } + public string DeploymentName { get { throw null; } } + public bool? DisableServiceLogs { get { throw null; } set { } } + public string ProjectName { get { throw null; } } + } + public partial class RecognizeCustomEntitiesActionResult : Azure.AI.TextAnalytics.TextAnalyticsActionResult + { + internal RecognizeCustomEntitiesActionResult() { } + public Azure.AI.TextAnalytics.RecognizeCustomEntitiesResultCollection DocumentsResults { get { throw null; } } + } + public partial class RecognizeCustomEntitiesResultCollection : System.Collections.ObjectModel.ReadOnlyCollection + { + internal RecognizeCustomEntitiesResultCollection() : 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; } } + } public partial class RecognizeEntitiesAction { public RecognizeEntitiesAction() { } public RecognizeEntitiesAction(Azure.AI.TextAnalytics.TextAnalyticsRequestOptions options) { } + public string ActionName { get { throw null; } set { } } public bool? DisableServiceLogs { get { throw null; } set { } } public string ModelVersion { get { throw null; } set { } } } @@ -659,6 +725,7 @@ public partial class RecognizeLinkedEntitiesAction { public RecognizeLinkedEntitiesAction() { } public RecognizeLinkedEntitiesAction(Azure.AI.TextAnalytics.TextAnalyticsRequestOptions options) { } + public string ActionName { get { throw null; } set { } } public bool? DisableServiceLogs { get { throw null; } set { } } public string ModelVersion { get { throw null; } set { } } } @@ -682,6 +749,7 @@ public partial class RecognizePiiEntitiesAction { public RecognizePiiEntitiesAction() { } public RecognizePiiEntitiesAction(Azure.AI.TextAnalytics.RecognizePiiEntitiesOptions options) { } + public string ActionName { get { throw null; } set { } } public System.Collections.Generic.IList CategoriesFilter { get { throw null; } } public bool? DisableServiceLogs { get { throw null; } set { } } public Azure.AI.TextAnalytics.PiiEntityDomain DomainFilter { get { throw null; } set { } } @@ -736,6 +804,32 @@ 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 ActionName { get { throw null; } set { } } + 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 Classification { 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 { @@ -770,6 +864,7 @@ public readonly partial struct TargetSentiment public partial class TextAnalyticsActionResult { internal TextAnalyticsActionResult() { } + public string ActionName { get { throw null; } } public System.DateTimeOffset CompletedOn { get { throw null; } } public Azure.AI.TextAnalytics.TextAnalyticsError Error { get { throw null; } } public bool HasError { get { throw null; } } @@ -781,9 +876,12 @@ public TextAnalyticsActions() { } public string DisplayName { get { throw null; } set { } } public System.Collections.Generic.IReadOnlyCollection ExtractKeyPhrasesActions { get { throw null; } set { } } public System.Collections.Generic.IReadOnlyCollection ExtractSummaryActions { get { throw null; } set { } } + public System.Collections.Generic.IReadOnlyCollection MultiCategoryClassifyActions { get { throw null; } set { } } + public System.Collections.Generic.IReadOnlyCollection RecognizeCustomEntitiesActions { get { throw null; } set { } } 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 +955,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,12 +1014,16 @@ 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 recognizeCustomEntitiesActionResults, System.Collections.Generic.IEnumerable singleCategoryClassifyActionResults, System.Collections.Generic.IEnumerable multiCategoryClassifyActionResults) { 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; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.AnalyzeSentimentActionResult AnalyzeSentimentActionResult(Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.AnalyzeSentimentActionResult AnalyzeSentimentActionResult(Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection result, string actionName, System.DateTimeOffset completedOn) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.AnalyzeSentimentActionResult AnalyzeSentimentActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.AnalyzeSentimentActionResult AnalyzeSentimentActionResult(string actionName, System.DateTimeOffset completedOn, string code, string message) { throw null; } public static Azure.AI.TextAnalytics.AnalyzeSentimentResult AnalyzeSentimentResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error) { throw null; } public static Azure.AI.TextAnalytics.AnalyzeSentimentResult AnalyzeSentimentResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.DocumentSentiment documentSentiment) { throw null; } public static Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection AnalyzeSentimentResultCollection(System.Collections.Generic.IEnumerable list, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string modelVersion) { throw null; } @@ -930,19 +1032,29 @@ 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.ClassificationCategoryCollection ClassificationCategoryCollection(System.Collections.Generic.IEnumerable classificationList, System.Collections.Generic.IEnumerable warnings) { 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; } public static Azure.AI.TextAnalytics.DetectLanguageResultCollection DetectLanguageResultCollection(System.Collections.Generic.IEnumerable list, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string modelVersion) { throw null; } public static Azure.AI.TextAnalytics.DocumentSentiment DocumentSentiment(Azure.AI.TextAnalytics.TextSentiment sentiment, double positiveScore, double neutralScore, double negativeScore, System.Collections.Generic.List sentenceSentiments, System.Collections.Generic.IList warnings = null) { throw null; } public static Azure.AI.TextAnalytics.EntityDataSource EntityDataSource(string name = null, string entityId = null) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult(Azure.AI.TextAnalytics.ExtractKeyPhrasesResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult(Azure.AI.TextAnalytics.ExtractKeyPhrasesResultCollection result, string actionName, System.DateTimeOffset completedOn) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult(string actionName, System.DateTimeOffset completedOn, string code, string message) { throw null; } public static Azure.AI.TextAnalytics.ExtractKeyPhrasesResult ExtractKeyPhrasesResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error) { throw null; } public static Azure.AI.TextAnalytics.ExtractKeyPhrasesResult ExtractKeyPhrasesResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.KeyPhraseCollection keyPhrases) { throw null; } public static Azure.AI.TextAnalytics.ExtractKeyPhrasesResultCollection ExtractKeyPhrasesResultCollection(System.Collections.Generic.IEnumerable list, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string modelVersion) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.ExtractSummaryActionResult ExtractSummaryActionResult(Azure.AI.TextAnalytics.ExtractSummaryResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.ExtractSummaryActionResult ExtractSummaryActionResult(Azure.AI.TextAnalytics.ExtractSummaryResultCollection result, string actionName, System.DateTimeOffset completedOn) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.ExtractSummaryActionResult ExtractSummaryActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.ExtractSummaryActionResult ExtractSummaryActionResult(string actionName, System.DateTimeOffset completedOn, string code, string message) { throw null; } public static Azure.AI.TextAnalytics.ExtractSummaryResult ExtractSummaryResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error) { throw null; } public static Azure.AI.TextAnalytics.ExtractSummaryResult ExtractSummaryResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.SummarySentenceCollection sentences) { throw null; } public static Azure.AI.TextAnalytics.ExtractSummaryResultCollection ExtractSummaryResultCollection(System.Collections.Generic.IEnumerable list, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string modelVersion) { throw null; } @@ -958,20 +1070,47 @@ public static partial class TextAnalyticsModelFactory [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.LinkedEntityMatch LinkedEntityMatch(string text, double score) { throw null; } public static Azure.AI.TextAnalytics.LinkedEntityMatch LinkedEntityMatch(string text, double score, int offset, int length) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public static Azure.AI.TextAnalytics.MultiCategoryClassifyActionResult MultiCategoryClassifyActionResult(Azure.AI.TextAnalytics.MultiCategoryClassifyResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.MultiCategoryClassifyActionResult MultiCategoryClassifyActionResult(Azure.AI.TextAnalytics.MultiCategoryClassifyResultCollection result, string actionName, System.DateTimeOffset completedOn) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public static Azure.AI.TextAnalytics.MultiCategoryClassifyActionResult MultiCategoryClassifyActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.MultiCategoryClassifyActionResult MultiCategoryClassifyActionResult(string actionName, System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.MultiCategoryClassifyResult MultiCategoryClassifyResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error) { throw null; } + public static Azure.AI.TextAnalytics.MultiCategoryClassifyResult MultiCategoryClassifyResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.ClassificationCategoryCollection documentClassificationCollection, System.Collections.Generic.IEnumerable warnings = null) { throw null; } + public static Azure.AI.TextAnalytics.MultiCategoryClassifyResultCollection MultiCategoryClassifyResultCollection(System.Collections.Generic.IEnumerable classificationResultList, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string projectName, string deploymentName) { throw null; } public static Azure.AI.TextAnalytics.PiiEntity PiiEntity(string text, string category, string subCategory, double score, int offset, int length) { throw null; } public static Azure.AI.TextAnalytics.PiiEntityCollection PiiEntityCollection(System.Collections.Generic.IEnumerable entities, string redactedText, System.Collections.Generic.IEnumerable warnings = null) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public static Azure.AI.TextAnalytics.RecognizeCustomEntitiesActionResult RecognizeCustomEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeCustomEntitiesResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.RecognizeCustomEntitiesActionResult RecognizeCustomEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeCustomEntitiesResultCollection result, string actionName, System.DateTimeOffset completedOn) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public static Azure.AI.TextAnalytics.RecognizeCustomEntitiesActionResult RecognizeCustomEntitiesActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.RecognizeCustomEntitiesActionResult RecognizeCustomEntitiesActionResult(string actionName, System.DateTimeOffset completedOn, string code, string message) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.RecognizeEntitiesActionResult RecognizeEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeEntitiesResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.RecognizeEntitiesActionResult RecognizeEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeEntitiesResultCollection result, string actionName, System.DateTimeOffset completedOn) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.RecognizeEntitiesActionResult RecognizeEntitiesActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.RecognizeEntitiesActionResult RecognizeEntitiesActionResult(string actionName, System.DateTimeOffset completedOn, string code, string message) { throw null; } public static Azure.AI.TextAnalytics.RecognizeEntitiesResult RecognizeEntitiesResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error) { throw null; } public static Azure.AI.TextAnalytics.RecognizeEntitiesResult RecognizeEntitiesResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.CategorizedEntityCollection entities) { throw null; } public static Azure.AI.TextAnalytics.RecognizeEntitiesResultCollection RecognizeEntitiesResultCollection(System.Collections.Generic.IEnumerable list, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string modelVersion) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeLinkedEntitiesResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeLinkedEntitiesResultCollection result, string actionName, System.DateTimeOffset completedOn) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult(string actionName, System.DateTimeOffset completedOn, string code, string message) { throw null; } public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesResult RecognizeLinkedEntitiesResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error) { throw null; } public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesResult RecognizeLinkedEntitiesResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.LinkedEntityCollection linkedEntities) { throw null; } public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesResultCollection RecognizeLinkedEntitiesResultCollection(System.Collections.Generic.IEnumerable list, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string modelVersion) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult(Azure.AI.TextAnalytics.RecognizePiiEntitiesResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult(Azure.AI.TextAnalytics.RecognizePiiEntitiesResultCollection result, string actionName, System.DateTimeOffset completedOn) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult(string actionName, System.DateTimeOffset completedOn, string code, string message) { throw null; } public static Azure.AI.TextAnalytics.RecognizePiiEntitiesResult RecognizePiiEntitiesResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error) { throw null; } public static Azure.AI.TextAnalytics.RecognizePiiEntitiesResult RecognizePiiEntitiesResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.PiiEntityCollection entities) { throw null; } public static Azure.AI.TextAnalytics.RecognizePiiEntitiesResultCollection RecognizePiiEntitiesResultCollection(System.Collections.Generic.IEnumerable list, Azure.AI.TextAnalytics.TextDocumentBatchStatistics statistics, string modelVersion) { throw null; } @@ -980,6 +1119,15 @@ 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; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public static Azure.AI.TextAnalytics.SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult(Azure.AI.TextAnalytics.SingleCategoryClassifyResultCollection result, System.DateTimeOffset completedOn) { throw null; } + public static Azure.AI.TextAnalytics.SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult(Azure.AI.TextAnalytics.SingleCategoryClassifyResultCollection result, string actionName, System.DateTimeOffset completedOn) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public static Azure.AI.TextAnalytics.SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult(System.DateTimeOffset completedOn, string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult(string actionName, 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 classification, 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..52867ee7a845 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample10_SingleCategoryClassify.md @@ -0,0 +1,91 @@ +# 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) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.Classification.Category}\" predicted with a confidence score of {documentResults.Classification.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/samples/Sample11_ClassifyCustomCategories.md b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample11_ClassifyCustomCategories.md new file mode 100644 index 000000000000..c5f5c2010c36 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample11_ClassifyCustomCategories.md @@ -0,0 +1,100 @@ +# Perform Custom Multiple Category Classification in Documents +This sample demonstrates how to run a Multi 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 custom multi category classification 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 Custom Multiple Category Classification in one or multiple documents + +To perform Multiple Category Classification in one or multiple documents, set up a `MultiCategoryClassifyAction` 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:TextAnalyticsMultiCategoryClassifyAsync +// 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 multiCategoryClassifyAction = new MultiCategoryClassifyAction(projectName, deploymentName); + +TextAnalyticsActions actions = new TextAnalyticsActions() +{ + MultiCategoryClassifyActions = new List() { multiCategoryClassifyAction } +}; + +// 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:TextAnalyticsMultiCategoryClassifyOperationStatus +// 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:TextAnalyticsMultiCategoryClassifyAsyncViewResults +// View operation results. +await foreach (AnalyzeActionsResult documentsInPage in operation.Value) +{ + IReadOnlyCollection multiClassificationActionResults = documentsInPage.MultiCategoryClassifyResults; + + foreach (MultiCategoryClassifyActionResult classificationActionResults in multiClassificationActionResults) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (MultiCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + if (documentResults.Classifications.Count > 0) + { + Console.WriteLine($" The following classes were predicted for this document:"); + + foreach (ClassificationCategory classification in documentResults.Classifications) + { + Console.WriteLine($" Class category \"{classification.Category}\" predicted with a confidence score of {classification.ConfidenceScore}."); + } + + Console.WriteLine(); + } + } + } +} +``` + +To see the full example source files, see: + +* [Synchronously Multi Category Classify](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassify.cs) +* [Asynchronously Multi Category Classify](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyAsync.cs) +* [Synchronously Multi Category Classify Convenience](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyConvenience.cs) +* [Asynchronously Multi Category Classify Convenience](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyConvenienceAsync.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/samples/Sample9_RecognizeCustomEntities.md b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample9_RecognizeCustomEntities.md new file mode 100644 index 000000000000..0d2a68f84d12 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample9_RecognizeCustomEntities.md @@ -0,0 +1,113 @@ +# Recognizing Custom Entities from Documents +This sample demonstrates how to recognize custom entities in one or more documents. To get started you'll need a Text Analytics endpoint and credentials. See [README][README] for links and instructions. + +## Creating a `TextAnalyticsClient` + +To create a new `TextAnalyticsClient` to recognize custom entities in a document, you need a Text Analytics endpoint and credentials. You can use the [DefaultAzureCredential][DefaultAzureCredential] to try a number of common authentication methods optimized for both running as a service and development. In the sample below, however, you'll use a Text Analytics API key credential by creating an `AzureKeyCredential` object, that if needed, will allow you to update the API key without creating a new client. + +You can set `endpoint` and `apiKey` based on an environment variable, a configuration setting, or any way that works for your application. + +```C# Snippet:CreateTextAnalyticsClient +string endpoint = ""; +string apiKey = ""; +var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); +``` + +## Recognizing custom entities in a single or multiple documents + +To recognize custom entities in documents, set up a `RecognizeCustomEntitiesAction` and call `StartAnalyzeActionsAsync` on the documents. The result is a Long Running operation of type `AnalyzeActionsOperation` which polls for the results from the API. You can use [Azure language studio][azure_language_studio] to train custom models. + +```C# Snippet:RecognizeCustomEntitiesActionAsync +// Create input documents. +string documentA = @"We love this trail and make the trip every year. The views are breathtaking and well + worth the hike! Yesterday was foggy though, so we missed the spectacular views. + We tried again today and it was amazing. Everyone in my family liked the trail although + it was too challenging for the less athletic among us."; + +string documentB = @"Last week we stayed at Hotel Foo to celebrate our anniversary. The staff knew about + our anniversary so they helped me organize a little surprise for my partner. + The room was clean and with the decoration I requested. It was perfect!"; + +var batchDocuments = new List +{ + new TextDocumentInput("1", documentA) + { + Language = "en", + }, + new TextDocumentInput("2", documentB) + { + Language = "en", + } +}; + +// prepare actions. +string projectName = ""; +string deploymentName = ""; +var actions = new TextAnalyticsActions() +{ + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(projectName, deploymentName); + } +}; + +AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchDocuments, 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:RecognizeCustomEntitiesActionOperationStatus +// 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:RecognizeCustomEntitiesActionAsyncViewResults +await foreach (AnalyzeActionsResult documentsInPage in operation.Value) +{ + IReadOnlyCollection customEntitiesActionResults = documentsInPage.RecognizeCustomEntitiesResults; + foreach (RecognizeCustomEntitiesActionResult customEntitiesActionResult in customEntitiesActionResults) + { + Console.WriteLine($" Action name: {customEntitiesActionResult.ActionName}"); + int docNumber = 1; + foreach (RecognizeEntitiesResult documentResults in customEntitiesActionResult.DocumentsResults) + { + Console.WriteLine($" Document #{docNumber++}"); + Console.WriteLine($" Recognized the following {documentResults.Entities.Count} entities:"); + + foreach (CategorizedEntity entity in documentResults.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Category: {entity.Category}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" ConfidenceScore: {entity.ConfidenceScore}"); + Console.WriteLine($" SubCategory: {entity.SubCategory}"); + } + Console.WriteLine(""); + } + } +} +``` + +To see the full example source files, see: + +* [Synchronously RecognizeCustomEntities](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntities.cs) +* [Asynchronously RecognizeCustomEntities](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples//Sample9_RecognizeCustomEntitiesAsync.cs) +* [Synchronously RecognizeCustomEntities Convenience](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesConvenience.cs) +* [Asynchronously RecognizeCustomEntities Convenience](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesConvenienceAsync.cs) + + +[azure_language_studio]: https://language.azure.com/ +[README]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/textanalytics/Azure.AI.TextAnalytics/README.md +[DefaultAzureCredential]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/identity/Azure.Identity/README.md \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_AnalyzeActions.md b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_AnalyzeActions.md index 278ccf665bb1..aa915bc5778f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_AnalyzeActions.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_AnalyzeActions.md @@ -64,6 +64,7 @@ To run multiple actions in multiple documents, call `StartAnalyzeActionsAsync` o int docNumber = 1; foreach (RecognizeEntitiesActionResult entitiesActionResults in entitiesResults) { + Console.WriteLine($" Action name: {entitiesActionResults.ActionName}"); foreach (RecognizeEntitiesResult documentResults in entitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsResult.cs index b0fc68ca4336..5611f4fe3a9c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsResult.cs @@ -16,7 +16,11 @@ internal AnalyzeActionsResult( IReadOnlyCollection recognizePiiEntitiesActionResults, IReadOnlyCollection recognizeLinkedEntitiesActionResults, IReadOnlyCollection analyzeSentimentActionResults, - IReadOnlyCollection extractSummaryActionResults) + IReadOnlyCollection extractSummaryActionResults, + IReadOnlyCollection recognizeCustomEntitiesActionResults, + IReadOnlyCollection singleCategoryClassifyActionResults, + IReadOnlyCollection multiCategoryClassifyActionResults + ) { ExtractKeyPhrasesResults = extractKeyPhrasesActionResults; RecognizeEntitiesResults = recognizeEntitiesActionResults; @@ -24,6 +28,9 @@ internal AnalyzeActionsResult( RecognizeLinkedEntitiesResults = recognizeLinkedEntitiesActionResults; AnalyzeSentimentResults = analyzeSentimentActionResults; ExtractSummaryResults = extractSummaryActionResults; + SingleCategoryClassifyResults = singleCategoryClassifyActionResults; + MultiCategoryClassifyResults = multiCategoryClassifyActionResults; + RecognizeCustomEntitiesResults = recognizeCustomEntitiesActionResults; } /// @@ -55,5 +62,20 @@ internal AnalyzeActionsResult( /// Determines the collection of . /// public IReadOnlyCollection ExtractSummaryResults { get; } + + /// + /// Determines the collection of . + /// + public IReadOnlyCollection RecognizeCustomEntitiesResults { get; } + + /// + /// Determines the collection of . + /// + public IReadOnlyCollection SingleCategoryClassifyResults { get; } + + /// + /// Determines the collection of . + /// + public IReadOnlyCollection MultiCategoryClassifyResults { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentAction.cs index 3a2cc1a8ec0f..0788e5c43044 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentAction.cs @@ -65,5 +65,10 @@ public AnalyzeSentimentAction(AnalyzeSentimentOptions options) /// This property only has value for and up. /// public bool? IncludeOpinionMining { get; set; } + + /// + /// Gets or sets a name for this action. If not provided, the service will generate one. + /// + public string ActionName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentActionResult.cs index 5bf5a499e60f..b223669359f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentActionResult.cs @@ -16,8 +16,8 @@ public class AnalyzeSentimentActionResult : TextAnalyticsActionResult /// /// Successful action. /// - internal AnalyzeSentimentActionResult(AnalyzeSentimentResultCollection result, DateTimeOffset completedOn) - : base(completedOn) + internal AnalyzeSentimentActionResult(AnalyzeSentimentResultCollection result, string actionName, DateTimeOffset completedOn) + : base(actionName, completedOn) { _documentsResults = result; } @@ -25,8 +25,8 @@ internal AnalyzeSentimentActionResult(AnalyzeSentimentResultCollection result, D /// /// Action with an error. /// - internal AnalyzeSentimentActionResult(DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) { } + internal AnalyzeSentimentActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(actionName, completedOn, error) { } /// /// Gets the result of the execution of an per each input document. 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/ClassificationCategoryCollection.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClassificationCategoryCollection.cs new file mode 100644 index 000000000000..6789abae4880 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClassificationCategoryCollection.cs @@ -0,0 +1,59 @@ +// 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 in a document, + /// and warnings encountered while processing the document. + /// + [DebuggerTypeProxy(typeof(ClassificationCategoryCollectionDebugView))] + public class ClassificationCategoryCollection : ReadOnlyCollection + { + internal ClassificationCategoryCollection(IList classificationCategories, IList warnings) + : base(classificationCategories) + { + Warnings = new ReadOnlyCollection(warnings); + } + + /// + /// Warnings encountered while processing the document. + /// + public IReadOnlyCollection Warnings { get; } + + /// + /// Debugger Proxy class for . + /// + internal class ClassificationCategoryCollectionDebugView + { + private ClassificationCategoryCollection BaseCollection { get; } + + public ClassificationCategoryCollectionDebugView(ClassificationCategoryCollection collection) + { + BaseCollection = collection; + } + + [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] + public List Items + { + get + { + return BaseCollection.ToList(); + } + } + + public IReadOnlyCollection Warnings + { + get + { + return BaseCollection.Warnings; + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesAction.cs index 29f149041206..394ec36596fe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesAction.cs @@ -52,5 +52,10 @@ public ExtractKeyPhrasesAction(TextAnalyticsRequestOptions options) /// This property only applies for and up. /// public bool? DisableServiceLogs { get; set; } + + /// + /// Gets or sets a name for this action. If not provided, the service will generate one. + /// + public string ActionName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesActionResult.cs index 1f019fb3ca20..f353b5e0beff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesActionResult.cs @@ -16,8 +16,8 @@ public class ExtractKeyPhrasesActionResult : TextAnalyticsActionResult /// /// Successful action. /// - internal ExtractKeyPhrasesActionResult(ExtractKeyPhrasesResultCollection result, DateTimeOffset completedOn) - : base(completedOn) + internal ExtractKeyPhrasesActionResult(ExtractKeyPhrasesResultCollection result, string actionName, DateTimeOffset completedOn) + : base(actionName, completedOn) { _documentsResults = result; } @@ -25,8 +25,8 @@ internal ExtractKeyPhrasesActionResult(ExtractKeyPhrasesResultCollection result, /// /// Action with an error. /// - internal ExtractKeyPhrasesActionResult(DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) { } + internal ExtractKeyPhrasesActionResult(string actionName, DateTimeOffset completedOn,TextAnalyticsErrorInternal error) + : base(actionName, completedOn, error) { } /// /// Gets the result of the execution of an per each input document. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractSummaryAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractSummaryAction.cs index a7389a7ae501..1cf1e49b51e1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractSummaryAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractSummaryAction.cs @@ -53,5 +53,10 @@ public ExtractSummaryAction() /// to the input document, as decided by the service. Defaults to . /// public SummarySentencesOrder? OrderBy { get; set; } + + /// + /// Gets or sets a name for this action. If not provided, the service will generate one. + /// + public string ActionName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractSummaryActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractSummaryActionResult.cs index ef84b5118c9c..ef70fe5a7c74 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractSummaryActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractSummaryActionResult.cs @@ -16,8 +16,8 @@ public class ExtractSummaryActionResult : TextAnalyticsActionResult /// /// Successful action. /// - internal ExtractSummaryActionResult(ExtractSummaryResultCollection result, DateTimeOffset completedOn) - : base(completedOn) + internal ExtractSummaryActionResult(ExtractSummaryResultCollection result, string actionName, DateTimeOffset completedOn) + : base(actionName, completedOn) { _documentsResults = result; } @@ -25,8 +25,8 @@ internal ExtractSummaryActionResult(ExtractSummaryResultCollection result, DateT /// /// Action with an error. /// - internal ExtractSummaryActionResult(DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) { } + internal ExtractSummaryActionResult(string actionName, DateTimeOffset completedOn,TextAnalyticsErrorInternal error) + : base(actionName, completedOn, error) { } /// /// Gets the result of the execution of an per each input document. 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 923716f3a8bb..47bdd8b4efdd 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 @@ -7,6 +7,7 @@ using System.Collections.Generic; using System.Text.Json; +using Azure.AI.TextAnalytics.Internal; using Azure.Core; namespace Azure.AI.TextAnalytics.Models @@ -25,6 +26,9 @@ internal static AnalyzeTasks DeserializeAnalyzeTasks(JsonElement element) Optional> entityLinkingTasks = default; Optional> sentimentAnalysisTasks = default; Optional> extractiveSummarizationTasks = default; + Optional> customEntityRecognitionTasks = default; + Optional> customSingleClassificationTasks = default; + Optional> customMultiClassificationTasks = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("completed")) @@ -137,8 +141,53 @@ internal static AnalyzeTasks DeserializeAnalyzeTasks(JsonElement element) extractiveSummarizationTasks = array; continue; } + if (property.NameEquals("customEntityRecognitionTasks")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(CustomEntityRecognitionTasksItem.DeserializeCustomEntityRecognitionTasksItem(item)); + } + customEntityRecognitionTasks = array; + continue; + } + if (property.NameEquals("customSingleClassificationTasks")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(CustomSingleClassificationTasksItem.DeserializeCustomSingleClassificationTasksItem(item)); + } + customSingleClassificationTasks = array; + continue; + } + if (property.NameEquals("customMultiClassificationTasks")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(CustomMultiClassificationTasksItem.DeserializeCustomMultiClassificationTasksItem(item)); + } + customMultiClassificationTasks = array; + continue; + } } - return new AnalyzeTasks(completed, failed, inProgress, total, Optional.ToList(entityRecognitionTasks), Optional.ToList(entityRecognitionPiiTasks), Optional.ToList(keyPhraseExtractionTasks), Optional.ToList(entityLinkingTasks), Optional.ToList(sentimentAnalysisTasks), Optional.ToList(extractiveSummarizationTasks)); + return new AnalyzeTasks(completed, failed, inProgress, total, Optional.ToList(entityRecognitionTasks), Optional.ToList(entityRecognitionPiiTasks), Optional.ToList(keyPhraseExtractionTasks), Optional.ToList(entityLinkingTasks), Optional.ToList(sentimentAnalysisTasks), Optional.ToList(extractiveSummarizationTasks), Optional.ToList(customEntityRecognitionTasks), Optional.ToList(customSingleClassificationTasks), Optional.ToList(customMultiClassificationTasks)); } } } 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 694d66d2787b..07074a6a79f9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs @@ -6,6 +6,7 @@ #nullable disable using System.Collections.Generic; +using Azure.AI.TextAnalytics.Internal; using Azure.Core; namespace Azure.AI.TextAnalytics.Models @@ -30,6 +31,9 @@ internal AnalyzeTasks(int completed, int failed, int inProgress, int total) EntityLinkingTasks = new ChangeTrackingList(); SentimentAnalysisTasks = new ChangeTrackingList(); ExtractiveSummarizationTasks = new ChangeTrackingList(); + CustomEntityRecognitionTasks = new ChangeTrackingList(); + CustomSingleClassificationTasks = new ChangeTrackingList(); + CustomMultiClassificationTasks = new ChangeTrackingList(); } /// Initializes a new instance of AnalyzeTasks. @@ -43,7 +47,10 @@ 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) + /// + /// + /// + 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; @@ -55,6 +62,9 @@ internal AnalyzeTasks(int completed, int failed, int inProgress, int total, IRea EntityLinkingTasks = entityLinkingTasks; SentimentAnalysisTasks = sentimentAnalysisTasks; ExtractiveSummarizationTasks = extractiveSummarizationTasks; + CustomEntityRecognitionTasks = customEntityRecognitionTasks; + CustomSingleClassificationTasks = customSingleClassificationTasks; + CustomMultiClassificationTasks = customMultiClassificationTasks; } /// Gets the completed. @@ -77,5 +87,11 @@ internal AnalyzeTasks(int completed, int failed, int inProgress, int total, IRea public IReadOnlyList SentimentAnalysisTasks { get; } /// Gets the extractive summarization tasks. public IReadOnlyList ExtractiveSummarizationTasks { get; } + /// Gets the custom entity recognition tasks. + public IReadOnlyList CustomEntityRecognitionTasks { get; } + /// Gets the custom single classification tasks. + public IReadOnlyList CustomSingleClassificationTasks { get; } + /// Gets the custom multi classification tasks. + public IReadOnlyList CustomMultiClassificationTasks { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ClassificationResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ClassificationResult.Serialization.cs new file mode 100644 index 000000000000..c0f8c6d31ab3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ClassificationResult.Serialization.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class ClassificationResult + { + internal static ClassificationResult DeserializeClassificationResult(JsonElement element) + { + string category = default; + double confidenceScore = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("category")) + { + category = property.Value.GetString(); + continue; + } + if (property.NameEquals("confidenceScore")) + { + confidenceScore = property.Value.GetDouble(); + continue; + } + } + return new ClassificationResult(category, confidenceScore); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ClassificationResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ClassificationResult.cs new file mode 100644 index 000000000000..652c07084ae4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ClassificationResult.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The ClassificationResult. + internal partial class ClassificationResult + { + /// Initializes a new instance of ClassificationResult. + /// Classification type. + /// Confidence score between 0 and 1 of the recognized classification. + /// is null. + internal ClassificationResult(string category, double confidenceScore) + { + if (category == null) + { + throw new ArgumentNullException(nameof(category)); + } + + Category = category; + ConfidenceScore = confidenceScore; + } + + /// Classification type. + public string Category { get; } + /// Confidence score between 0 and 1 of the recognized classification. + public double ConfidenceScore { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesResult.Serialization.cs new file mode 100644 index 000000000000..fc0bd1642ac5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesResult.Serialization.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomEntitiesResult + { + internal static CustomEntitiesResult DeserializeCustomEntitiesResult(JsonElement element) + { + IReadOnlyList documents = default; + IReadOnlyList errors = default; + Optional statistics = default; + string projectName = default; + string deploymentName = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("documents")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(DocumentEntities.DeserializeDocumentEntities(item)); + } + documents = array; + continue; + } + if (property.NameEquals("errors")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(DocumentError.DeserializeDocumentError(item)); + } + errors = array; + continue; + } + if (property.NameEquals("statistics")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + statistics = TextDocumentBatchStatistics.DeserializeTextDocumentBatchStatistics(property.Value); + continue; + } + if (property.NameEquals("projectName")) + { + projectName = property.Value.GetString(); + continue; + } + if (property.NameEquals("deploymentName")) + { + deploymentName = property.Value.GetString(); + continue; + } + } + return new CustomEntitiesResult(documents, errors, statistics.Value, projectName, deploymentName); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesResult.cs new file mode 100644 index 000000000000..93abd9f3b13a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesResult.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomEntitiesResult. + internal partial class CustomEntitiesResult + { + /// Initializes a new instance of CustomEntitiesResult. + /// Response by document. + /// Errors by document id. + /// This field indicates the project name for the model. + /// This field indicates the deployment name for the model. + /// , , , or is null. + internal CustomEntitiesResult(IEnumerable documents, IEnumerable errors, string projectName, string deploymentName) + { + if (documents == null) + { + throw new ArgumentNullException(nameof(documents)); + } + if (errors == null) + { + throw new ArgumentNullException(nameof(errors)); + } + if (projectName == null) + { + throw new ArgumentNullException(nameof(projectName)); + } + if (deploymentName == null) + { + throw new ArgumentNullException(nameof(deploymentName)); + } + + Documents = documents.ToList(); + Errors = errors.ToList(); + ProjectName = projectName; + DeploymentName = deploymentName; + } + + /// Initializes a new instance of CustomEntitiesResult. + /// Response by document. + /// Errors by document id. + /// if showStats=true was specified in the request this field will contain information about the request payload. + /// This field indicates the project name for the model. + /// This field indicates the deployment name for the model. + internal CustomEntitiesResult(IReadOnlyList documents, IReadOnlyList errors, TextDocumentBatchStatistics statistics, string projectName, string deploymentName) + { + Documents = documents; + Errors = errors; + Statistics = statistics; + ProjectName = projectName; + DeploymentName = deploymentName; + } + + /// Response by document. + public IReadOnlyList Documents { get; } + /// Errors by document id. + public IReadOnlyList Errors { get; } + /// if showStats=true was specified in the request this field will contain information about the request payload. + public TextDocumentBatchStatistics Statistics { get; } + /// This field indicates the project name for the model. + public string ProjectName { get; } + /// This field indicates the deployment name for the model. + public string DeploymentName { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTask.Serialization.cs new file mode 100644 index 000000000000..aaa7fd87ce59 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTask.Serialization.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomEntitiesTask : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteObjectValue(Parameters); + } + if (Optional.IsDefined(TaskName)) + { + writer.WritePropertyName("taskName"); + writer.WriteStringValue(TaskName); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTask.cs new file mode 100644 index 000000000000..5ef5e897ea2b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTask.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomEntitiesTask. + internal partial class CustomEntitiesTask + { + /// Initializes a new instance of CustomEntitiesTask. + public CustomEntitiesTask() + { + } + + /// Gets or sets the parameters. + public CustomEntitiesTaskParameters Parameters { get; set; } + /// Gets or sets the task name. + public string TaskName { get; set; } + } +} 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 new file mode 100644 index 000000000000..b9c741e77014 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.Serialization.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomEntitiesTaskParameters : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("project-name"); + writer.WriteStringValue(ProjectName); + writer.WritePropertyName("deployment-name"); + writer.WriteStringValue(DeploymentName); + if (Optional.IsDefined(LoggingOptOut)) + { + writer.WritePropertyName("loggingOptOut"); + writer.WriteBooleanValue(LoggingOptOut.Value); + } + if (Optional.IsDefined(StringIndexType)) + { + writer.WritePropertyName("stringIndexType"); + writer.WriteStringValue(StringIndexType.Value.ToString()); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.cs new file mode 100644 index 000000000000..34c509958d5b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskParameters.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomEntitiesTaskParameters. + internal partial class CustomEntitiesTaskParameters + { + /// Initializes a new instance of 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; + } + + /// Gets the project name. + public string ProjectName { get; } + /// Gets the deployment name. + public string DeploymentName { get; } + /// Gets or sets the logging opt out. + public bool? LoggingOptOut { get; set; } + /// Gets or sets the string index type. + public StringIndexType? StringIndexType { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskResult.Serialization.cs new file mode 100644 index 000000000000..150c21279b9c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskResult.Serialization.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomEntitiesTaskResult + { + internal static CustomEntitiesTaskResult DeserializeCustomEntitiesTaskResult(JsonElement element) + { + Optional results = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = CustomEntitiesResult.DeserializeCustomEntitiesResult(property.Value); + continue; + } + } + return new CustomEntitiesTaskResult(results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskResult.cs new file mode 100644 index 000000000000..6135a7943522 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntitiesTaskResult.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomEntitiesTaskResult. + internal partial class CustomEntitiesTaskResult + { + /// Initializes a new instance of CustomEntitiesTaskResult. + internal CustomEntitiesTaskResult() + { + } + + /// Initializes a new instance of CustomEntitiesTaskResult. + /// + internal CustomEntitiesTaskResult(CustomEntitiesResult results) + { + Results = results; + } + + /// Gets the results. + public CustomEntitiesResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntityRecognitionTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntityRecognitionTasksItem.Serialization.cs new file mode 100644 index 000000000000..4cae5b599db8 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntityRecognitionTasksItem.Serialization.cs @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Internal +{ + internal partial class CustomEntityRecognitionTasksItem + { + internal static CustomEntityRecognitionTasksItem DeserializeCustomEntityRecognitionTasksItem(JsonElement element) + { + Optional results = default; + DateTimeOffset lastUpdateDateTime = default; + Optional taskName = default; + TextAnalyticsOperationStatus status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = CustomEntitiesResult.DeserializeCustomEntitiesResult(property.Value); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("taskName")) + { + taskName = property.Value.GetString(); + continue; + } + if (property.NameEquals("status")) + { + status = new TextAnalyticsOperationStatus(property.Value.GetString()); + continue; + } + } + return new CustomEntityRecognitionTasksItem(lastUpdateDateTime, taskName.Value, status, results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntityRecognitionTasksItem.cs new file mode 100644 index 000000000000..bdcfe763809b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomEntityRecognitionTasksItem.cs @@ -0,0 +1,37 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics; +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics.Internal +{ + /// The TasksStateTasksCustomEntityRecognitionTasksItem. + internal partial class CustomEntityRecognitionTasksItem : TaskState + { + /// Initializes a new instance of CustomEntityRecognitionTasksItem. + /// + /// + internal CustomEntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) + { + } + + /// Initializes a new instance of CustomEntityRecognitionTasksItem. + /// + /// + /// + /// + internal CustomEntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, CustomEntitiesResult results) : base(lastUpdateDateTime, taskName, status) + { + Results = results; + } + + /// Gets the results. + public CustomEntitiesResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationResult.Serialization.cs new file mode 100644 index 000000000000..7c49edb4696a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationResult.Serialization.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomMultiClassificationResult + { + internal static CustomMultiClassificationResult DeserializeCustomMultiClassificationResult(JsonElement element) + { + IReadOnlyList documents = default; + IReadOnlyList errors = default; + Optional statistics = default; + string projectName = default; + string deploymentName = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("documents")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(MultiClassificationDocument.DeserializeMultiClassificationDocument(item)); + } + documents = array; + continue; + } + if (property.NameEquals("errors")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(DocumentError.DeserializeDocumentError(item)); + } + errors = array; + continue; + } + if (property.NameEquals("statistics")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + statistics = TextDocumentBatchStatistics.DeserializeTextDocumentBatchStatistics(property.Value); + continue; + } + if (property.NameEquals("projectName")) + { + projectName = property.Value.GetString(); + continue; + } + if (property.NameEquals("deploymentName")) + { + deploymentName = property.Value.GetString(); + continue; + } + } + return new CustomMultiClassificationResult(documents, errors, statistics.Value, projectName, deploymentName); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationResult.cs new file mode 100644 index 000000000000..8ef1a2feb3b3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationResult.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomMultiClassificationResult. + internal partial class CustomMultiClassificationResult + { + /// Initializes a new instance of CustomMultiClassificationResult. + /// Response by document. + /// Errors by document id. + /// This field indicates the project name for the model. + /// This field indicates the deployment name for the model. + /// , , , or is null. + internal CustomMultiClassificationResult(IEnumerable documents, IEnumerable errors, string projectName, string deploymentName) + { + if (documents == null) + { + throw new ArgumentNullException(nameof(documents)); + } + if (errors == null) + { + throw new ArgumentNullException(nameof(errors)); + } + if (projectName == null) + { + throw new ArgumentNullException(nameof(projectName)); + } + if (deploymentName == null) + { + throw new ArgumentNullException(nameof(deploymentName)); + } + + Documents = documents.ToList(); + Errors = errors.ToList(); + ProjectName = projectName; + DeploymentName = deploymentName; + } + + /// Initializes a new instance of CustomMultiClassificationResult. + /// Response by document. + /// Errors by document id. + /// if showStats=true was specified in the request this field will contain information about the request payload. + /// This field indicates the project name for the model. + /// This field indicates the deployment name for the model. + internal CustomMultiClassificationResult(IReadOnlyList documents, IReadOnlyList errors, TextDocumentBatchStatistics statistics, string projectName, string deploymentName) + { + Documents = documents; + Errors = errors; + Statistics = statistics; + ProjectName = projectName; + DeploymentName = deploymentName; + } + + /// Response by document. + public IReadOnlyList Documents { get; } + /// Errors by document id. + public IReadOnlyList Errors { get; } + /// if showStats=true was specified in the request this field will contain information about the request payload. + public TextDocumentBatchStatistics Statistics { get; } + /// This field indicates the project name for the model. + public string ProjectName { get; } + /// This field indicates the deployment name for the model. + public string DeploymentName { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTask.Serialization.cs new file mode 100644 index 000000000000..a6ab8c546b15 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTask.Serialization.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomMultiClassificationTask : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteObjectValue(Parameters); + } + if (Optional.IsDefined(TaskName)) + { + writer.WritePropertyName("taskName"); + writer.WriteStringValue(TaskName); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTask.cs new file mode 100644 index 000000000000..3a32778e9a28 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTask.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomMultiClassificationTask. + internal partial class CustomMultiClassificationTask + { + /// Initializes a new instance of CustomMultiClassificationTask. + public CustomMultiClassificationTask() + { + } + + /// Gets or sets the parameters. + public CustomMultiClassificationTaskParameters Parameters { get; set; } + /// Gets or sets the task name. + public string TaskName { 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 new file mode 100644 index 000000000000..dfbffed0afae --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.Serialization.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomMultiClassificationTaskParameters : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("project-name"); + writer.WriteStringValue(ProjectName); + writer.WritePropertyName("deployment-name"); + writer.WriteStringValue(DeploymentName); + if (Optional.IsDefined(LoggingOptOut)) + { + 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 new file mode 100644 index 000000000000..162caa94f953 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskParameters.cs @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomMultiClassificationTaskParameters. + internal partial class CustomMultiClassificationTaskParameters + { + /// Initializes a new instance of 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; + } + + /// Gets the project name. + public string ProjectName { get; } + /// Gets the deployment name. + public string DeploymentName { get; } + /// Gets or sets the logging opt out. + public bool? LoggingOptOut { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskResult.Serialization.cs new file mode 100644 index 000000000000..6516b39a7e65 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskResult.Serialization.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomMultiClassificationTaskResult + { + internal static CustomMultiClassificationTaskResult DeserializeCustomMultiClassificationTaskResult(JsonElement element) + { + Optional results = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = CustomMultiClassificationResult.DeserializeCustomMultiClassificationResult(property.Value); + continue; + } + } + return new CustomMultiClassificationTaskResult(results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskResult.cs new file mode 100644 index 000000000000..df0878a961fe --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTaskResult.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomMultiClassificationTaskResult. + internal partial class CustomMultiClassificationTaskResult + { + /// Initializes a new instance of CustomMultiClassificationTaskResult. + internal CustomMultiClassificationTaskResult() + { + } + + /// Initializes a new instance of CustomMultiClassificationTaskResult. + /// + internal CustomMultiClassificationTaskResult(CustomMultiClassificationResult results) + { + Results = results; + } + + /// Gets the results. + public CustomMultiClassificationResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTasksItem.Serialization.cs new file mode 100644 index 000000000000..ba2befd49d30 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTasksItem.Serialization.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomMultiClassificationTasksItem + { + internal static CustomMultiClassificationTasksItem DeserializeCustomMultiClassificationTasksItem(JsonElement element) + { + Optional results = default; + DateTimeOffset lastUpdateDateTime = default; + Optional taskName = default; + TextAnalyticsOperationStatus status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = CustomMultiClassificationResult.DeserializeCustomMultiClassificationResult(property.Value); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("taskName")) + { + taskName = property.Value.GetString(); + continue; + } + if (property.NameEquals("status")) + { + status = new TextAnalyticsOperationStatus(property.Value.GetString()); + continue; + } + } + return new CustomMultiClassificationTasksItem(lastUpdateDateTime, taskName.Value, status, results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTasksItem.cs new file mode 100644 index 000000000000..b04321854442 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomMultiClassificationTasksItem.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The TasksStateTasksCustomMultiClassificationTasksItem. + internal partial class CustomMultiClassificationTasksItem : TaskState + { + /// Initializes a new instance of CustomMultiClassificationTasksItem. + /// + /// + internal CustomMultiClassificationTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) + { + } + + /// Initializes a new instance of CustomMultiClassificationTasksItem. + /// + /// + /// + /// + internal CustomMultiClassificationTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, CustomMultiClassificationResult results) : base(lastUpdateDateTime, taskName, status) + { + Results = results; + } + + /// Gets the results. + public CustomMultiClassificationResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationResult.Serialization.cs new file mode 100644 index 000000000000..363cd5086290 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationResult.Serialization.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomSingleClassificationResult + { + internal static CustomSingleClassificationResult DeserializeCustomSingleClassificationResult(JsonElement element) + { + IReadOnlyList documents = default; + IReadOnlyList errors = default; + Optional statistics = default; + string projectName = default; + string deploymentName = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("documents")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(SingleClassificationDocument.DeserializeSingleClassificationDocument(item)); + } + documents = array; + continue; + } + if (property.NameEquals("errors")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(DocumentError.DeserializeDocumentError(item)); + } + errors = array; + continue; + } + if (property.NameEquals("statistics")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + statistics = TextDocumentBatchStatistics.DeserializeTextDocumentBatchStatistics(property.Value); + continue; + } + if (property.NameEquals("projectName")) + { + projectName = property.Value.GetString(); + continue; + } + if (property.NameEquals("deploymentName")) + { + deploymentName = property.Value.GetString(); + continue; + } + } + return new CustomSingleClassificationResult(documents, errors, statistics.Value, projectName, deploymentName); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationResult.cs new file mode 100644 index 000000000000..5d6eed318e7c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationResult.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomSingleClassificationResult. + internal partial class CustomSingleClassificationResult + { + /// Initializes a new instance of CustomSingleClassificationResult. + /// Response by document. + /// Errors by document id. + /// This field indicates the project name for the model. + /// This field indicates the deployment name for the model. + /// , , , or is null. + internal CustomSingleClassificationResult(IEnumerable documents, IEnumerable errors, string projectName, string deploymentName) + { + if (documents == null) + { + throw new ArgumentNullException(nameof(documents)); + } + if (errors == null) + { + throw new ArgumentNullException(nameof(errors)); + } + if (projectName == null) + { + throw new ArgumentNullException(nameof(projectName)); + } + if (deploymentName == null) + { + throw new ArgumentNullException(nameof(deploymentName)); + } + + Documents = documents.ToList(); + Errors = errors.ToList(); + ProjectName = projectName; + DeploymentName = deploymentName; + } + + /// Initializes a new instance of CustomSingleClassificationResult. + /// Response by document. + /// Errors by document id. + /// if showStats=true was specified in the request this field will contain information about the request payload. + /// This field indicates the project name for the model. + /// This field indicates the deployment name for the model. + internal CustomSingleClassificationResult(IReadOnlyList documents, IReadOnlyList errors, TextDocumentBatchStatistics statistics, string projectName, string deploymentName) + { + Documents = documents; + Errors = errors; + Statistics = statistics; + ProjectName = projectName; + DeploymentName = deploymentName; + } + + /// Response by document. + public IReadOnlyList Documents { get; } + /// Errors by document id. + public IReadOnlyList Errors { get; } + /// if showStats=true was specified in the request this field will contain information about the request payload. + public TextDocumentBatchStatistics Statistics { get; } + /// This field indicates the project name for the model. + public string ProjectName { get; } + /// This field indicates the deployment name for the model. + public string DeploymentName { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTask.Serialization.cs new file mode 100644 index 000000000000..344b2a38d41f --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTask.Serialization.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomSingleClassificationTask : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteObjectValue(Parameters); + } + if (Optional.IsDefined(TaskName)) + { + writer.WritePropertyName("taskName"); + writer.WriteStringValue(TaskName); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTask.cs new file mode 100644 index 000000000000..45417d373524 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTask.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomSingleClassificationTask. + internal partial class CustomSingleClassificationTask + { + /// Initializes a new instance of CustomSingleClassificationTask. + public CustomSingleClassificationTask() + { + } + + /// Gets or sets the parameters. + public CustomSingleClassificationTaskParameters Parameters { get; set; } + /// Gets or sets the task name. + public string TaskName { 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 new file mode 100644 index 000000000000..5d96c7ef6108 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.Serialization.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomSingleClassificationTaskParameters : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("project-name"); + writer.WriteStringValue(ProjectName); + writer.WritePropertyName("deployment-name"); + writer.WriteStringValue(DeploymentName); + if (Optional.IsDefined(LoggingOptOut)) + { + 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 new file mode 100644 index 000000000000..e9d1ac59b04a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskParameters.cs @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomSingleClassificationTaskParameters. + internal partial class CustomSingleClassificationTaskParameters + { + /// Initializes a new instance of 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; + } + + /// Gets the project name. + public string ProjectName { get; } + /// Gets the deployment name. + public string DeploymentName { get; } + /// Gets or sets the logging opt out. + public bool? LoggingOptOut { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskResult.Serialization.cs new file mode 100644 index 000000000000..563ee7164482 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskResult.Serialization.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomSingleClassificationTaskResult + { + internal static CustomSingleClassificationTaskResult DeserializeCustomSingleClassificationTaskResult(JsonElement element) + { + Optional results = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = CustomSingleClassificationResult.DeserializeCustomSingleClassificationResult(property.Value); + continue; + } + } + return new CustomSingleClassificationTaskResult(results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskResult.cs new file mode 100644 index 000000000000..feec1de8531b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTaskResult.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The CustomSingleClassificationTaskResult. + internal partial class CustomSingleClassificationTaskResult + { + /// Initializes a new instance of CustomSingleClassificationTaskResult. + internal CustomSingleClassificationTaskResult() + { + } + + /// Initializes a new instance of CustomSingleClassificationTaskResult. + /// + internal CustomSingleClassificationTaskResult(CustomSingleClassificationResult results) + { + Results = results; + } + + /// Gets the results. + public CustomSingleClassificationResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.Serialization.cs new file mode 100644 index 000000000000..0ec62ad8712c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.Serialization.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class CustomSingleClassificationTasksItem + { + internal static CustomSingleClassificationTasksItem DeserializeCustomSingleClassificationTasksItem(JsonElement element) + { + Optional results = default; + DateTimeOffset lastUpdateDateTime = default; + Optional taskName = default; + TextAnalyticsOperationStatus status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = CustomSingleClassificationResult.DeserializeCustomSingleClassificationResult(property.Value); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("taskName")) + { + taskName = property.Value.GetString(); + continue; + } + if (property.NameEquals("status")) + { + status = new TextAnalyticsOperationStatus(property.Value.GetString()); + continue; + } + } + return new CustomSingleClassificationTasksItem(lastUpdateDateTime, taskName.Value, status, results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.cs new file mode 100644 index 000000000000..1018cbf22f9e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/CustomSingleClassificationTasksItem.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The TasksStateTasksCustomSingleClassificationTasksItem. + internal partial class CustomSingleClassificationTasksItem : TaskState + { + /// Initializes a new instance of CustomSingleClassificationTasksItem. + /// + /// + internal CustomSingleClassificationTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) + { + } + + /// Initializes a new instance of CustomSingleClassificationTasksItem. + /// + /// + /// + /// + internal CustomSingleClassificationTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, CustomSingleClassificationResult results) : base(lastUpdateDateTime, taskName, status) + { + Results = results; + } + + /// Gets the results. + public CustomSingleClassificationResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ExtractiveSummarizationTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ExtractiveSummarizationTask.Serialization.cs index c28518148569..ce0b21633453 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ExtractiveSummarizationTask.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ExtractiveSummarizationTask.Serialization.cs @@ -20,6 +20,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("parameters"); writer.WriteObjectValue(Parameters); } + if (Optional.IsDefined(TaskName)) + { + writer.WritePropertyName("taskName"); + writer.WriteStringValue(TaskName); + } writer.WriteEndObject(); } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ExtractiveSummarizationTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ExtractiveSummarizationTask.cs index 5c8a49b54b41..412af8693faf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ExtractiveSummarizationTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ExtractiveSummarizationTask.cs @@ -17,5 +17,7 @@ public ExtractiveSummarizationTask() /// Gets or sets the parameters. public ExtractiveSummarizationTaskParameters Parameters { get; set; } + /// Gets or sets the task name. + public string TaskName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.Serialization.cs index 238598fcd030..85baace48aaa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.Serialization.cs @@ -75,6 +75,36 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) } writer.WriteEndArray(); } + if (Optional.IsCollectionDefined(CustomEntityRecognitionTasks)) + { + writer.WritePropertyName("customEntityRecognitionTasks"); + writer.WriteStartArray(); + foreach (var item in CustomEntityRecognitionTasks) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsCollectionDefined(CustomSingleClassificationTasks)) + { + writer.WritePropertyName("customSingleClassificationTasks"); + writer.WriteStartArray(); + foreach (var item in CustomSingleClassificationTasks) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsCollectionDefined(CustomMultiClassificationTasks)) + { + writer.WritePropertyName("customMultiClassificationTasks"); + writer.WriteStartArray(); + foreach (var item in CustomMultiClassificationTasks) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } writer.WriteEndObject(); } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs index c746ceb12c31..e2bcddf58cc7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs @@ -23,6 +23,9 @@ public JobManifestTasks() EntityLinkingTasks = new ChangeTrackingList(); SentimentAnalysisTasks = new ChangeTrackingList(); ExtractiveSummarizationTasks = new ChangeTrackingList(); + CustomEntityRecognitionTasks = new ChangeTrackingList(); + CustomSingleClassificationTasks = new ChangeTrackingList(); + CustomMultiClassificationTasks = new ChangeTrackingList(); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/MultiClassificationDocument.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/MultiClassificationDocument.Serialization.cs new file mode 100644 index 000000000000..aad46bc07b94 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/MultiClassificationDocument.Serialization.cs @@ -0,0 +1,64 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class MultiClassificationDocument + { + internal static MultiClassificationDocument DeserializeMultiClassificationDocument(JsonElement element) + { + string id = default; + IReadOnlyList classifications = default; + IReadOnlyList warnings = default; + Optional statistics = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + if (property.NameEquals("classifications")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(ClassificationResult.DeserializeClassificationResult(item)); + } + classifications = array; + continue; + } + if (property.NameEquals("warnings")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(TextAnalyticsWarningInternal.DeserializeTextAnalyticsWarningInternal(item)); + } + warnings = array; + continue; + } + if (property.NameEquals("statistics")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + statistics = TextDocumentStatistics.DeserializeTextDocumentStatistics(property.Value); + continue; + } + } + return new MultiClassificationDocument(id, classifications, warnings, Optional.ToNullable(statistics)); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/MultiClassificationDocument.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/MultiClassificationDocument.cs new file mode 100644 index 000000000000..16b82052e2c5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/MultiClassificationDocument.cs @@ -0,0 +1,65 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The MultiClassificationDocument. + internal partial class MultiClassificationDocument + { + /// Initializes a new instance of MultiClassificationDocument. + /// Unique, non-empty document identifier. + /// Recognized classification results in the document. + /// Warnings encountered while processing document. + /// , , or is null. + internal MultiClassificationDocument(string id, IEnumerable classifications, IEnumerable warnings) + { + if (id == null) + { + throw new ArgumentNullException(nameof(id)); + } + if (classifications == null) + { + throw new ArgumentNullException(nameof(classifications)); + } + if (warnings == null) + { + throw new ArgumentNullException(nameof(warnings)); + } + + Id = id; + Classifications = classifications.ToList(); + Warnings = warnings.ToList(); + } + + /// Initializes a new instance of MultiClassificationDocument. + /// Unique, non-empty document identifier. + /// Recognized classification results in the document. + /// Warnings encountered while processing document. + /// if showStats=true was specified in the request this field will contain information about the document payload. + internal MultiClassificationDocument(string id, IReadOnlyList classifications, IReadOnlyList warnings, TextDocumentStatistics? statistics) + { + Id = id; + Classifications = classifications; + Warnings = warnings; + Statistics = statistics; + } + + /// Unique, non-empty document identifier. + public string Id { get; } + /// Recognized classification results in the document. + public IReadOnlyList Classifications { get; } + /// Warnings encountered while processing document. + public IReadOnlyList Warnings { get; } + /// if showStats=true was specified in the request this field will contain information about the document payload. + public TextDocumentStatistics? Statistics { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SingleClassificationDocument.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SingleClassificationDocument.Serialization.cs new file mode 100644 index 000000000000..bff8bb74edfc --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SingleClassificationDocument.Serialization.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class SingleClassificationDocument + { + internal static SingleClassificationDocument DeserializeSingleClassificationDocument(JsonElement element) + { + string id = default; + ClassificationResult classification = default; + IReadOnlyList warnings = default; + Optional statistics = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + if (property.NameEquals("classification")) + { + classification = ClassificationResult.DeserializeClassificationResult(property.Value); + continue; + } + if (property.NameEquals("warnings")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(TextAnalyticsWarningInternal.DeserializeTextAnalyticsWarningInternal(item)); + } + warnings = array; + continue; + } + if (property.NameEquals("statistics")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + statistics = TextDocumentStatistics.DeserializeTextDocumentStatistics(property.Value); + continue; + } + } + return new SingleClassificationDocument(id, classification, warnings, Optional.ToNullable(statistics)); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SingleClassificationDocument.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SingleClassificationDocument.cs new file mode 100644 index 000000000000..e24fe1c9070b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SingleClassificationDocument.cs @@ -0,0 +1,65 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The SingleClassificationDocument. + internal partial class SingleClassificationDocument + { + /// Initializes a new instance of SingleClassificationDocument. + /// Unique, non-empty document identifier. + /// + /// Warnings encountered while processing document. + /// , , or is null. + internal SingleClassificationDocument(string id, ClassificationResult classification, IEnumerable warnings) + { + if (id == null) + { + throw new ArgumentNullException(nameof(id)); + } + if (classification == null) + { + throw new ArgumentNullException(nameof(classification)); + } + if (warnings == null) + { + throw new ArgumentNullException(nameof(warnings)); + } + + Id = id; + Classification = classification; + Warnings = warnings.ToList(); + } + + /// Initializes a new instance of SingleClassificationDocument. + /// Unique, non-empty document identifier. + /// + /// Warnings encountered while processing document. + /// if showStats=true was specified in the request this field will contain information about the document payload. + internal SingleClassificationDocument(string id, ClassificationResult classification, IReadOnlyList warnings, TextDocumentStatistics? statistics) + { + Id = id; + Classification = classification; + Warnings = warnings; + Statistics = statistics; + } + + /// Unique, non-empty document identifier. + public string Id { get; } + /// Gets the classification. + public ClassificationResult Classification { get; } + /// Warnings encountered while processing document. + public IReadOnlyList Warnings { get; } + /// if showStats=true was specified in the request this field will contain information about the document payload. + public TextDocumentStatistics? Statistics { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs index 4e620423c427..130fc3a1fd8e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs @@ -30,7 +30,7 @@ internal partial class TextAnalyticsRestClient /// Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus.api.cognitive.microsoft.com). /// Text Analytics API version (for example, v3.0). /// or is null. - public TextAnalyticsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, string apiVersion = "v3.2-preview.1") + public TextAnalyticsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, string apiVersion = "v3.2-preview.2") { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomEntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomEntitiesTaskParameters.cs new file mode 100644 index 000000000000..9f198bfb0289 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomEntitiesTaskParameters.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 +{ + /// + /// CustomEntitiesTaskParameters class. + /// + [CodeGenModel("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 new file mode 100644 index 000000000000..9582988e1177 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomMultiClassificationTaskParameters.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 +{ + /// + /// CustomMultiClassificationTaskParameters. + /// + [CodeGenModel("CustomMultiClassificationTaskParameters")] + internal partial class CustomMultiClassificationTaskParameters { } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomMultiClassificationTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomMultiClassificationTasksItem.cs new file mode 100644 index 000000000000..6433d4be4679 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomMultiClassificationTasksItem.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 +{ + /// + /// CustomMultiClassificationTasksItem. + /// + [CodeGenModel("TasksStateTasksCustomMultiClassificationTasksItem")] + internal partial class CustomMultiClassificationTasksItem { } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTaskParameters.cs new file mode 100644 index 000000000000..6422a2482e7b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/CustomSingleClassificationTaskParameters.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 +{ + /// + /// CustomSingleClassificationTaskParameters. + /// + [CodeGenModel("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/Internal/TasksStateTasksCustomEntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/TasksStateTasksCustomEntityRecognitionTasksItem.cs new file mode 100644 index 000000000000..02163cee555b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/TasksStateTasksCustomEntityRecognitionTasksItem.cs @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Internal +{ + /// + /// CustomEntityRecognitionTasksItem. + /// + [CodeGenModel("TasksStateTasksCustomEntityRecognitionTasksItem")] + internal partial class CustomEntityRecognitionTasksItem + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs index e85284d42aee..dbf01ef02416 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs @@ -42,5 +42,20 @@ internal partial class JobManifestTasks /// ExtractiveSummarizationTasks /// public IList ExtractiveSummarizationTasks { get; set; } + + /// + /// CustomEntityRecognitionTasks + /// + internal IList CustomEntityRecognitionTasks { get; set; } + + /// + /// CustomSingleClassificationTasks + /// + internal IList CustomSingleClassificationTasks { get; set; } + + /// + /// CustomMultiClassificationTasks + /// + internal IList CustomMultiClassificationTasks { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyAction.cs new file mode 100644 index 000000000000..a4836ffdfba8 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyAction.cs @@ -0,0 +1,53 @@ +// 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 Multi Category Classification action on a set of documents. This corresponds + /// to a Multi 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 MultiCategoryClassifyAction + { + /// + /// Initializes a new instance of the + /// class which allows callers to specify details about how to execute + /// a Multi Category Classification action on a set of documents. + /// Sets the and properties. + /// + public MultiCategoryClassifyAction(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; } + + /// + /// Gets or sets a name for this action. If not provided, the service will generate one. + /// + public string ActionName { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyActionResult.cs new file mode 100644 index 000000000000..a58ad9e917cd --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyActionResult.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 MultiCategoryClassifyActionResult : TextAnalyticsActionResult + { + private readonly MultiCategoryClassifyResultCollection _documentsResults; + + /// + /// Successful action. + /// + internal MultiCategoryClassifyActionResult(MultiCategoryClassifyResultCollection result, string actionName, DateTimeOffset completedOn) + : base(actionName, completedOn) + { + _documentsResults = result; + } + + /// + /// Action with an error. + /// + internal MultiCategoryClassifyActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(actionName, completedOn, error) { } + + /// + /// Gets the result of the execution of a per each input document. + /// + public MultiCategoryClassifyResultCollection 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/MultiCategoryClassifyResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyResult.cs new file mode 100644 index 000000000000..c6e48a80b28c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyResult.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 Multi Category Classification operation on a document, + /// containing the collection of objects + /// predicted for that document. + /// + public class MultiCategoryClassifyResult : TextAnalyticsResult + { + private readonly ClassificationCategoryCollection _classifications; + internal MultiCategoryClassifyResult(string id, TextDocumentStatistics statistics, ClassificationCategoryCollection classifications, IReadOnlyCollection warnings) + : base(id, statistics) + { + _classifications = classifications; + Warnings = warnings; + } + + internal MultiCategoryClassifyResult(string id, TextAnalyticsError error) : base(id, error) { } + + /// + /// Warnings encountered while processing the document. + /// + public IReadOnlyCollection Warnings { get; } + + /// + /// Gets the collection of objects predicted for the corresponding document. + /// + public ClassificationCategoryCollection Classifications + { + get + { + if (HasError) + { + throw new InvalidOperationException($"Cannot access result for document {Id}, due to error {Error.ErrorCode}: {Error.Message}"); + } + return _classifications; + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyResultCollection.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyResultCollection.cs new file mode 100644 index 000000000000..ccfa0718f423 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/MultiCategoryClassifyResultCollection.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(MultiCategoryClassifyResultCollectionDebugView))] + public class MultiCategoryClassifyResultCollection : ReadOnlyCollection + { + internal MultiCategoryClassifyResultCollection(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 MultiCategoryClassifyResultCollectionDebugView + { + private MultiCategoryClassifyResultCollection BaseCollection { get; } + + public MultiCategoryClassifyResultCollectionDebugView(MultiCategoryClassifyResultCollection 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/RecognizeCustomEntitiesAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeCustomEntitiesAction.cs new file mode 100644 index 000000000000..580d75a86496 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeCustomEntitiesAction.cs @@ -0,0 +1,52 @@ +// 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 Recognize Custom Entities action in a set of documents. + /// + public class RecognizeCustomEntitiesAction + { + /// + /// Initializes a new instance of the + /// class which allows callers to specify details about how to execute + /// a Recognize Custom Entities action in a set of documents. + /// Sets the and properties. + /// + /// Sets the value of the property corresponding to the name of the project. + /// Sets the value of the property corresponding to the name of the deployment. + public RecognizeCustomEntitiesAction(string projectName, string deploymentName) + { + ProjectName = projectName; + DeploymentName = deploymentName; + } + + /// + /// Gets the value of the property corresponding to the name of the proejct. + /// + public string ProjectName { get; } + + /// + /// Gets the value of the property corresponding to the name of the 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; } + + /// + /// Gets or sets a name for this action. If not provided, the service will generate one. + /// + public string ActionName { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeCustomEntitiesActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeCustomEntitiesActionResult.cs new file mode 100644 index 000000000000..b261d63f6d17 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeCustomEntitiesActionResult.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 RecognizeCustomEntitiesActionResult : TextAnalyticsActionResult + { + private readonly RecognizeCustomEntitiesResultCollection _documentsResults; + + /// + /// Successful action. + /// + internal RecognizeCustomEntitiesActionResult(RecognizeCustomEntitiesResultCollection result, string actionName, DateTimeOffset completedOn) + : base(actionName, completedOn) + { + _documentsResults = result; + } + + /// + /// Action with an error. + /// + internal RecognizeCustomEntitiesActionResult(string actionName, DateTimeOffset completedOn,TextAnalyticsErrorInternal error) + : base(actionName, completedOn, error) { } + + /// + /// Gets the result of the execution of a per each input document. + /// + public RecognizeCustomEntitiesResultCollection 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/RecognizeCustomEntitiesResultCollection.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeCustomEntitiesResultCollection.cs new file mode 100644 index 000000000000..02392d78a439 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeCustomEntitiesResultCollection.cs @@ -0,0 +1,88 @@ +// 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(RecognizeCustomEntitiesResultCollectionDebugView))] + public class RecognizeCustomEntitiesResultCollection : ReadOnlyCollection + { + internal RecognizeCustomEntitiesResultCollection(IList list, TextDocumentBatchStatistics statistics, string projectName, string deploymentName) : base(list) + { + Statistics = statistics; + DeploymentName = deploymentName; + ProjectName = projectName; + } + + /// + /// 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 deployment. + /// + public string DeploymentName { get; } + + /// + /// Gets the value of the property corresponding to the name of the project. + /// + public string ProjectName { get; } + + /// + /// Debugger Proxy class for . + /// + internal class RecognizeCustomEntitiesResultCollectionDebugView + { + private RecognizeCustomEntitiesResultCollection BaseCollection { get; } + + public RecognizeCustomEntitiesResultCollectionDebugView(RecognizeCustomEntitiesResultCollection 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/RecognizeEntitiesAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesAction.cs index c469ea894df5..1978a192db84 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesAction.cs @@ -52,5 +52,10 @@ public RecognizeEntitiesAction(TextAnalyticsRequestOptions options) /// This property only applies for and up. /// public bool? DisableServiceLogs { get; set; } + + /// + /// Gets or sets a name for this action. If not provided, the service will generate one. + /// + public string ActionName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesActionResult.cs index 00f1b3680add..10cc341d79f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesActionResult.cs @@ -16,8 +16,8 @@ public class RecognizeEntitiesActionResult : TextAnalyticsActionResult /// /// Successful action. /// - internal RecognizeEntitiesActionResult(RecognizeEntitiesResultCollection result, DateTimeOffset completedOn) - : base(completedOn) + internal RecognizeEntitiesActionResult(RecognizeEntitiesResultCollection result, string actionName, DateTimeOffset completedOn) + : base(actionName, completedOn) { _documentsResults = result; } @@ -25,8 +25,8 @@ internal RecognizeEntitiesActionResult(RecognizeEntitiesResultCollection result, /// /// Action with an error. /// - internal RecognizeEntitiesActionResult(DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) { } + internal RecognizeEntitiesActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(actionName, completedOn, error) { } /// /// Gets the result of the execution of a per each input document. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesAction.cs index 1b7a7b4e10ba..66f4c575a08a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesAction.cs @@ -52,5 +52,10 @@ public RecognizeLinkedEntitiesAction(TextAnalyticsRequestOptions options) /// This property only applies for and up. /// public bool? DisableServiceLogs { get; set; } + + /// + /// Gets or sets a name for this action. If not provided, the service will generate one. + /// + public string ActionName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesActionResult.cs index 344cedb11a47..a2cce657bfa1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesActionResult.cs @@ -16,8 +16,8 @@ public class RecognizeLinkedEntitiesActionResult : TextAnalyticsActionResult /// /// Successful action. /// - internal RecognizeLinkedEntitiesActionResult(RecognizeLinkedEntitiesResultCollection result, DateTimeOffset completedOn) - : base(completedOn) + internal RecognizeLinkedEntitiesActionResult(RecognizeLinkedEntitiesResultCollection result, string actionName, DateTimeOffset completedOn) + : base(actionName, completedOn) { _documentsResults = result; } @@ -25,8 +25,8 @@ internal RecognizeLinkedEntitiesActionResult(RecognizeLinkedEntitiesResultCollec /// /// Action with an error. /// - internal RecognizeLinkedEntitiesActionResult(DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) { } + internal RecognizeLinkedEntitiesActionResult(string actionName, DateTimeOffset completedOn,TextAnalyticsErrorInternal error) + : base(actionName, completedOn, error) { } /// /// Gets the result of the execution of a per each input document. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesAction.cs index 41216579e55d..839045d7f1f5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesAction.cs @@ -72,5 +72,10 @@ public RecognizePiiEntitiesAction(RecognizePiiEntitiesOptions options) /// Filters the response entities to entities that match the specified. /// public IList CategoriesFilter { get; internal set; } = new List(); + + /// + /// Gets or sets a name for this action. If not provided, the service will generate one. + /// + public string ActionName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesActionResult.cs index 816adb96efe8..34c6439ef7f5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesActionResult.cs @@ -16,8 +16,8 @@ public class RecognizePiiEntitiesActionResult : TextAnalyticsActionResult /// /// Successful action. /// - internal RecognizePiiEntitiesActionResult(RecognizePiiEntitiesResultCollection result, DateTimeOffset completedOn) - : base(completedOn) + internal RecognizePiiEntitiesActionResult(RecognizePiiEntitiesResultCollection result, string actionName, DateTimeOffset completedOn) + : base(actionName, completedOn) { _documentsResults = result; } @@ -25,8 +25,8 @@ internal RecognizePiiEntitiesActionResult(RecognizePiiEntitiesResultCollection r /// /// Action with an error. /// - internal RecognizePiiEntitiesActionResult(DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) { } + internal RecognizePiiEntitiesActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(actionName, completedOn, error) { } /// /// Gets the result of the execution of a per each input document. 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..60f25a379fed --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/SingleCategoryClassifyAction.cs @@ -0,0 +1,55 @@ +// 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; } + + /// + /// Gets or sets a name for this action. If not provided, the service will generate one. + /// + public string ActionName { 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..e3893451993e --- /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, string actionName, DateTimeOffset completedOn) + : base(actionName, completedOn) + { + _documentsResults = result; + } + + /// + /// Action with an error. + /// + internal SingleCategoryClassifyActionResult(string actionName, DateTimeOffset completedOn,TextAnalyticsErrorInternal error) + : base(actionName, 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..80de446f13d3 --- /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 _classification; + internal SingleCategoryClassifyResult(string id, TextDocumentStatistics statistics, ClassificationCategory classificationCategory , IReadOnlyCollection warnings) + : base(id, statistics) + { + _classification = 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 Classification + { + get + { + if (HasError) + { + throw new InvalidOperationException($"Cannot access result for document {Id}, due to error {Error.ErrorCode}: {Error.Message}"); + } + return _classification; + } + } + } +} 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/TextAnalyticsActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActionResult.cs index 416d3105d491..7efa511d6611 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActionResult.cs @@ -11,14 +11,16 @@ namespace Azure.AI.TextAnalytics /// public class TextAnalyticsActionResult { - internal TextAnalyticsActionResult (DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + internal TextAnalyticsActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) { + ActionName = actionName; CompletedOn = completedOn; Error = error != null ? Transforms.ConvertToError(error) : default; } - internal TextAnalyticsActionResult(DateTimeOffset completedOn) + internal TextAnalyticsActionResult(string actionName, DateTimeOffset completedOn) { + ActionName = actionName; CompletedOn = completedOn; } @@ -36,5 +38,10 @@ internal TextAnalyticsActionResult(DateTimeOffset completedOn) /// Indicates that the document was not successfully processed and an error was returned for this document. /// public bool HasError => Error.ErrorCode != default; + + /// + /// Gets the name for this action. + /// + public string ActionName { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs index 7b0eb87778e3..b045e6095cd6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs @@ -24,41 +24,59 @@ public TextAnalyticsActions() /// /// The set of that will get executed on the input documents. - /// Note that currently only one is supported. /// public IReadOnlyCollection ExtractKeyPhrasesActions { get; set; } /// /// The set of that will get executed on the input documents. - /// Note that currently only one is supported. /// public IReadOnlyCollection RecognizeEntitiesActions { get; set; } /// /// The set of that will get executed on the input documents. - /// Note that currently only one is supported. /// public IReadOnlyCollection RecognizePiiEntitiesActions { get; set; } /// /// The set of that will get executed on the input documents. - /// Note that currently only one is supported. /// public IReadOnlyCollection RecognizeLinkedEntitiesActions { get; set; } /// /// The set of that will get executed on the input documents. - /// Note that currently only one is supported. /// public IReadOnlyCollection AnalyzeSentimentActions { 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. + /// This property only applies for and up. /// public IReadOnlyCollection ExtractSummaryActions { get; set; } + + /// + /// The set of that will get executed on the input documents. + /// + /// + /// This property only applies for and up. + /// + public IReadOnlyCollection RecognizeCustomEntitiesActions { get; set; } + + /// + /// The set of that will get executed on the input documents. + /// + /// + /// This property only applies for and up. + /// + public IReadOnlyCollection SingleCategoryClassifyActions { get; set; } + + /// + /// The set of that will get executed on the input documents. + /// + /// + /// This property only applies for and up. + /// + public IReadOnlyCollection MultiCategoryClassifyActions { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 4cd50b4fd4f6..c9237b22f20b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2396,7 +2396,6 @@ public virtual async Task StartAnalyzeActionsAsync(IEnu private AnalyzeActionsOperation StartAnalyzeActions(MultiLanguageBatchInput batchInput, TextAnalyticsActions actions, AnalyzeActionsOptions options = default, CancellationToken cancellationToken = default) { - ValidateActions(actions); options ??= new AnalyzeActionsOptions(); AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, CreateTasks(actions)) { DisplayName = actions.DisplayName }; @@ -2422,7 +2421,6 @@ private AnalyzeActionsOperation StartAnalyzeActions(MultiLanguageBatchInput batc private async Task StartAnalyzeActionsAsync(MultiLanguageBatchInput batchInput, TextAnalyticsActions actions, AnalyzeActionsOptions options = default, CancellationToken cancellationToken = default) { - ValidateActions(actions); options ??= new AnalyzeActionsOptions(); AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, CreateTasks(actions)) { DisplayName = actions.DisplayName }; @@ -2458,6 +2456,10 @@ private static JobManifestTasks CreateTasks(TextAnalyticsActions actions) { tasks.EntityRecognitionTasks = Transforms.ConvertFromRecognizeEntitiesActionsToTasks(actions.RecognizeEntitiesActions); } + if (actions.RecognizeCustomEntitiesActions != null) + { + tasks.CustomEntityRecognitionTasks = Transforms.ConvertFromRecognizeCustomEntitiesActionsToTasks(actions.RecognizeCustomEntitiesActions); + } if (actions.ExtractKeyPhrasesActions != null) { tasks.KeyPhraseExtractionTasks = Transforms.ConvertFromExtractKeyPhrasesActionsToTasks(actions.ExtractKeyPhrasesActions); @@ -2474,20 +2476,15 @@ private static JobManifestTasks CreateTasks(TextAnalyticsActions actions) { tasks.ExtractiveSummarizationTasks = Transforms.ConvertFromExtractSummaryActionsToTasks(actions.ExtractSummaryActions); } - return tasks; - } - - private static void ValidateActions(TextAnalyticsActions actions) - { - if (actions.RecognizePiiEntitiesActions?.Count > 1 || - actions.RecognizeEntitiesActions?.Count > 1 || - actions.RecognizeLinkedEntitiesActions?.Count > 1 || - actions.ExtractKeyPhrasesActions?.Count > 1 || - actions.AnalyzeSentimentActions?.Count > 1 || - actions.ExtractSummaryActions?.Count > 1) + if (actions.SingleCategoryClassifyActions != null) + { + tasks.CustomSingleClassificationTasks = Transforms.ConvertFromSingleCategoryClassifyActionsToTasks(actions.SingleCategoryClassifyActions); + } + if (actions.MultiCategoryClassifyActions != null) { - throw new ArgumentException("Multiple of the same action is not currently supported."); + tasks.CustomMultiClassificationTasks = Transforms.ConvertFromMultiCategoryClassifyActionsToTasks(actions.MultiCategoryClassifyActions); } + return tasks; } #endregion 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..bca21ef0586c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsModelFactory.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsModelFactory.cs @@ -518,6 +518,104 @@ 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 MultiCategoryClassifyResult MultiCategoryClassifyResult(string id, TextDocumentStatistics statistics, ClassificationCategoryCollection documentClassificationCollection, IEnumerable warnings = default) + { + return new MultiCategoryClassifyResult(id, statistics, documentClassificationCollection, 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 MultiCategoryClassifyResult MultiCategoryClassifyResult(string id, TextAnalyticsError error) + { + return new MultiCategoryClassifyResult(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 MultiCategoryClassifyResultCollection MultiCategoryClassifyResultCollection(IEnumerable classificationResultList, TextDocumentBatchStatistics statistics, string projectName, string deploymentName) + { + return new MultiCategoryClassifyResultCollection(classificationResultList.ToList(), statistics, projectName, deploymentName); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the collection of . + /// Sets the property. + /// A new instance of for mocking purposes. + public static ClassificationCategoryCollection ClassificationCategoryCollection(IEnumerable classificationList, IEnumerable warnings) + { + return new ClassificationCategoryCollection(classificationList.ToList(), warnings.ToList()); + } + #endregion + + #region Single Category Classify + /// + /// 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 classification, IEnumerable warnings = default) + { + return new SingleCategoryClassifyResult(id, statistics, classification, 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 +774,11 @@ public static AnalyzeActionsResult AnalyzeActionsResult( recognizePiiEntitiesActionResults.ToList(), recognizeLinkedEntitiesActionsResults.ToList(), analyzeSentimentActionsResults.ToList(), - new List()); + new List(), + new List(), + new List(), + new List() + ); } /// @@ -688,6 +790,9 @@ public static AnalyzeActionsResult AnalyzeActionsResult( /// Sets the collection of . /// Sets the collection of . /// 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 +800,10 @@ public static AnalyzeActionsResult AnalyzeActionsResult( IEnumerable recognizePiiEntitiesActionResults, IEnumerable recognizeLinkedEntitiesActionResults, IEnumerable analyzeSentimentActionResults, - IEnumerable extractSummaryActionResults) + IEnumerable extractSummaryActionResults, + IEnumerable recognizeCustomEntitiesActionResults, + IEnumerable singleCategoryClassifyActionResults, + IEnumerable multiCategoryClassifyActionResults) { return new AnalyzeActionsResult( extractKeyPhrasesActionResults.ToList(), @@ -703,35 +811,88 @@ public static AnalyzeActionsResult AnalyzeActionsResult( recognizePiiEntitiesActionResults.ToList(), recognizeLinkedEntitiesActionResults.ToList(), analyzeSentimentActionResults.ToList(), - extractSummaryActionResults.ToList()); + extractSummaryActionResults.ToList(), + recognizeCustomEntitiesActionResults.ToList(), + singleCategoryClassifyActionResults.ToList(), + multiCategoryClassifyActionResults.ToList() + ); } /// /// 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 ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult( ExtractKeyPhrasesResultCollection result, + string actionName, DateTimeOffset completedOn) { - return new ExtractKeyPhrasesActionResult(result, completedOn); + return new ExtractKeyPhrasesActionResult(result, actionName, completedOn); } /// /// Initializes a new instance of for mocking purposes. /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult( + ExtractKeyPhrasesResultCollection result, + DateTimeOffset completedOn) + { + return new ExtractKeyPhrasesActionResult(result, default, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. /// Sets the property. /// Sets the property. /// Sets the property. /// A new instance of for mocking purposes. public static ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult( + string actionName, DateTimeOffset completedOn, string code, string message) { - return new ExtractKeyPhrasesActionResult(completedOn, new TextAnalyticsErrorInternal(code, message)); + return new ExtractKeyPhrasesActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult( + DateTimeOffset completedOn, + string code, + string message) + { + return new ExtractKeyPhrasesActionResult(default, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// 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 ExtractSummaryActionResult ExtractSummaryActionResult( + ExtractSummaryResultCollection result, + string actionName, + DateTimeOffset completedOn) + { + return new ExtractSummaryActionResult(result, actionName, completedOn); } /// @@ -740,39 +901,278 @@ public static ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult( /// Sets the property. /// Sets the property. /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] public static ExtractSummaryActionResult ExtractSummaryActionResult( ExtractSummaryResultCollection result, DateTimeOffset completedOn) { - return new ExtractSummaryActionResult(result, completedOn); + return new ExtractSummaryActionResult(result, default, completedOn); } /// /// Initializes a new instance of for mocking purposes. /// + /// Sets the property. /// Sets the property. /// Sets the property. /// Sets the property. /// A new instance of for mocking purposes. public static ExtractSummaryActionResult ExtractSummaryActionResult( + string actionName, + DateTimeOffset completedOn, + string code, + string message) + { + return new ExtractSummaryActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static ExtractSummaryActionResult ExtractSummaryActionResult( + DateTimeOffset completedOn, + string code, + string message) + { + return new ExtractSummaryActionResult(default, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// 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 RecognizeCustomEntitiesActionResult RecognizeCustomEntitiesActionResult( + RecognizeCustomEntitiesResultCollection result, + string actionName, + DateTimeOffset completedOn) + { + return new RecognizeCustomEntitiesActionResult(result, actionName, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static RecognizeCustomEntitiesActionResult RecognizeCustomEntitiesActionResult( + RecognizeCustomEntitiesResultCollection result, + DateTimeOffset completedOn) + { + return new RecognizeCustomEntitiesActionResult(result, default, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static RecognizeCustomEntitiesActionResult RecognizeCustomEntitiesActionResult( + string actionName, DateTimeOffset completedOn, string code, string message) { - return new ExtractSummaryActionResult(completedOn, new TextAnalyticsErrorInternal(code, message)); + return new RecognizeCustomEntitiesActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static RecognizeCustomEntitiesActionResult RecognizeCustomEntitiesActionResult( + DateTimeOffset completedOn, + string code, + string message) + { + return new RecognizeCustomEntitiesActionResult(default, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// 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 MultiCategoryClassifyActionResult MultiCategoryClassifyActionResult( + MultiCategoryClassifyResultCollection result, + string actionName, + DateTimeOffset completedOn) + { + return new MultiCategoryClassifyActionResult(result, actionName, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static MultiCategoryClassifyActionResult MultiCategoryClassifyActionResult( + MultiCategoryClassifyResultCollection result, + DateTimeOffset completedOn) + { + return new MultiCategoryClassifyActionResult(result, default, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static MultiCategoryClassifyActionResult MultiCategoryClassifyActionResult( + string actionName, + DateTimeOffset completedOn, + string code, + string message) + { + return new MultiCategoryClassifyActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static MultiCategoryClassifyActionResult MultiCategoryClassifyActionResult( + DateTimeOffset completedOn, + string code, + string message) + { + return new MultiCategoryClassifyActionResult(default, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// 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( + SingleCategoryClassifyResultCollection result, + string actionName, + DateTimeOffset completedOn) + { + return new SingleCategoryClassifyActionResult(result, actionName, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult( + SingleCategoryClassifyResultCollection result, + DateTimeOffset completedOn) + { + return new SingleCategoryClassifyActionResult(result, default, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult( + string actionName, + DateTimeOffset completedOn, + string code, + string message) + { + return new SingleCategoryClassifyActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static SingleCategoryClassifyActionResult SingleCategoryClassifyActionResult( + DateTimeOffset completedOn, + string code, + string message) + { + return new SingleCategoryClassifyActionResult(default, completedOn, new TextAnalyticsErrorInternal(code, message)); } /// /// 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 AnalyzeSentimentActionResult AnalyzeSentimentActionResult( AnalyzeSentimentResultCollection result, + string actionName, DateTimeOffset completedOn) { - return new AnalyzeSentimentActionResult(result, completedOn); + return new AnalyzeSentimentActionResult(result, actionName, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + + [EditorBrowsable(EditorBrowsableState.Never)] + public static AnalyzeSentimentActionResult AnalyzeSentimentActionResult( + AnalyzeSentimentResultCollection result, + DateTimeOffset completedOn) + { + return new AnalyzeSentimentActionResult(result, default, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static AnalyzeSentimentActionResult AnalyzeSentimentActionResult( + string actionName, + DateTimeOffset completedOn, + string code, + string message) + { + return new AnalyzeSentimentActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); } /// @@ -782,40 +1182,90 @@ public static AnalyzeSentimentActionResult AnalyzeSentimentActionResult( /// Sets the property. /// Sets the property. /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] public static AnalyzeSentimentActionResult AnalyzeSentimentActionResult( DateTimeOffset completedOn, string code, string message) { - return new AnalyzeSentimentActionResult(completedOn, new TextAnalyticsErrorInternal(code, message)); + return new AnalyzeSentimentActionResult(default, completedOn, new TextAnalyticsErrorInternal(code, message)); } /// /// 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 RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult( RecognizeLinkedEntitiesResultCollection result, + string actionName, DateTimeOffset completedOn) { - return new RecognizeLinkedEntitiesActionResult(result, completedOn); + return new RecognizeLinkedEntitiesActionResult(result, actionName, completedOn); } /// /// Initializes a new instance of for mocking purposes. /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult( + RecognizeLinkedEntitiesResultCollection result, + DateTimeOffset completedOn) + { + return new RecognizeLinkedEntitiesActionResult(result, default, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. /// Sets the property. /// Sets the property. /// Sets the property. /// A new instance of for mocking purposes. public static RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult( + string actionName, DateTimeOffset completedOn, string code, string message) { - return new RecognizeLinkedEntitiesActionResult(completedOn, new TextAnalyticsErrorInternal(code, message)); + return new RecognizeLinkedEntitiesActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult( + DateTimeOffset completedOn, + string code, + string message) + { + return new RecognizeLinkedEntitiesActionResult(default, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// + /// 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 RecognizeEntitiesActionResult RecognizeEntitiesActionResult( + RecognizeEntitiesResultCollection result, + string actionName, + DateTimeOffset completedOn) + { + return new RecognizeEntitiesActionResult(result, actionName, completedOn); } /// @@ -824,39 +1274,91 @@ public static RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionR /// Sets the property. /// Sets the property. /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] public static RecognizeEntitiesActionResult RecognizeEntitiesActionResult( RecognizeEntitiesResultCollection result, DateTimeOffset completedOn) { - return new RecognizeEntitiesActionResult(result, completedOn); + return new RecognizeEntitiesActionResult(result, default, completedOn); } /// /// Initializes a new instance of for mocking purposes. /// + /// Sets the property. /// Sets the property. /// Sets the property. /// Sets the property. /// A new instance of for mocking purposes. public static RecognizeEntitiesActionResult RecognizeEntitiesActionResult( + string actionName, DateTimeOffset completedOn, string code, string message) { - return new RecognizeEntitiesActionResult(completedOn, new TextAnalyticsErrorInternal(code, message)); + return new RecognizeEntitiesActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); } /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] + public static RecognizeEntitiesActionResult RecognizeEntitiesActionResult( + DateTimeOffset completedOn, + string code, + string message) + { + return new RecognizeEntitiesActionResult(default, completedOn, new TextAnalyticsErrorInternal(code, message)); + } + + /// ` + /// 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 RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult( + RecognizePiiEntitiesResultCollection result, + string actionName, + DateTimeOffset completedOn) + { + return new RecognizePiiEntitiesActionResult(result, actionName, completedOn); + } + + /// ` /// Initializes a new instance of for mocking purposes. /// /// Sets the property. /// Sets the property. /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] public static RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult( RecognizePiiEntitiesResultCollection result, DateTimeOffset completedOn) { - return new RecognizePiiEntitiesActionResult(result, completedOn); + return new RecognizePiiEntitiesActionResult(result, default, completedOn); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult( + string actionName, + DateTimeOffset completedOn, + string code, + string message) + { + return new RecognizePiiEntitiesActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); } /// @@ -866,12 +1368,13 @@ public static RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult( /// Sets the property. /// Sets the property. /// A new instance of for mocking purposes. + [EditorBrowsable(EditorBrowsableState.Never)] public static RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult( DateTimeOffset completedOn, string code, string message) { - return new RecognizePiiEntitiesActionResult(completedOn, new TextAnalyticsErrorInternal(code, message)); + return new RecognizePiiEntitiesActionResult(default, completedOn, new TextAnalyticsErrorInternal(code, message)); } #endregion Action Result Models diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index 8585d697a0e1..5abb82d93d75 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -14,6 +14,8 @@ internal static class Transforms { #region Common + public static readonly Regex _targetRegex = new Regex("#/tasks/(keyPhraseExtractionTasks|entityRecognitionPiiTasks|entityRecognitionTasks|entityLinkingTasks|sentimentAnalysisTasks|extractiveSummarizationTasks|customSingleClassificationTasks|customMultiClassificationTasks|customEntityRecognitionTasks)/(\\d+)", RegexOptions.Compiled, TimeSpan.FromSeconds(2)); + internal static TextAnalyticsError ConvertToError(TextAnalyticsErrorInternal error) { string errorCode = error.Code; @@ -73,7 +75,7 @@ internal static DetectedLanguage ConvertToDetectedLanguage(DocumentLanguage docu internal static DetectLanguageResultCollection ConvertToDetectLanguageResultCollection(LanguageResult results, IDictionary idToIndexMap) { - var detectedLanguages = new List(); + var detectedLanguages = new List(results.Errors.Count); //Read errors foreach (DocumentError error in results.Errors) @@ -98,7 +100,7 @@ internal static DetectLanguageResultCollection ConvertToDetectLanguageResultColl internal static AnalyzeSentimentResultCollection ConvertToAnalyzeSentimentResultCollection(SentimentResponse results, IDictionary idToIndexMap) { - var analyzedSentiments = new List(); + var analyzedSentiments = new List(results.Errors.Count); //Read errors foreach (DocumentError error in results.Errors) @@ -128,7 +130,7 @@ internal static KeyPhraseCollection ConvertToKeyPhraseCollection(DocumentKeyPhra internal static ExtractKeyPhrasesResultCollection ConvertToExtractKeyPhrasesResultCollection(KeyPhraseResult results, IDictionary idToIndexMap) { - var keyPhrases = new List(); + var keyPhrases = new List(results.Errors.Count); //Read errors foreach (DocumentError error in results.Errors) @@ -161,7 +163,7 @@ internal static CategorizedEntityCollection ConvertToCategorizedEntityCollection internal static RecognizeEntitiesResultCollection ConvertToRecognizeEntitiesResultCollection(EntitiesResult results, IDictionary idToIndexMap) { - var recognizeEntities = new List(); + var recognizeEntities = new List(results.Errors.Count); //Read errors foreach (DocumentError error in results.Errors) @@ -182,6 +184,29 @@ internal static RecognizeEntitiesResultCollection ConvertToRecognizeEntitiesResu #endregion + #region Recognize Custom Entities + internal static RecognizeCustomEntitiesResultCollection ConvertToRecognizeCustomEntitiesResultCollection(CustomEntitiesResult results, IDictionary idToIndexMap) + { + var recognizeEntities = new List(results.Errors.Count); + + //Read errors + foreach (DocumentError error in results.Errors) + { + recognizeEntities.Add(new RecognizeEntitiesResult(error.Id, ConvertToError(error.Error))); + } + + //Read document entities + foreach (DocumentEntities docEntities in results.Documents) + { + recognizeEntities.Add(new RecognizeEntitiesResult(docEntities.Id, docEntities.Statistics ?? default, ConvertToCategorizedEntityCollection(docEntities))); + } + + recognizeEntities = SortHeterogeneousCollection(recognizeEntities, idToIndexMap); + + return new RecognizeCustomEntitiesResultCollection(recognizeEntities, results.Statistics, results.ProjectName, results.DeploymentName); + } + #endregion + #region Recognize PII Entities internal static List ConvertToPiiEntityList(List entities) @@ -194,7 +219,7 @@ internal static PiiEntityCollection ConvertToPiiEntityCollection(PiiDocumentEnti internal static RecognizePiiEntitiesResultCollection ConvertToRecognizePiiEntitiesResultCollection(PiiEntitiesResult results, IDictionary idToIndexMap) { - var recognizeEntities = new List(); + var recognizeEntities = new List(results.Errors.Count); //Read errors foreach (DocumentError error in results.Errors) @@ -224,7 +249,7 @@ internal static LinkedEntityCollection ConvertToLinkedEntityCollection(DocumentL internal static RecognizeLinkedEntitiesResultCollection ConvertToRecognizeLinkedEntitiesResultCollection(EntityLinkingResult results, IDictionary idToIndexMap) { - var recognizeEntities = new List(); + var recognizeEntities = new List(results.Errors.Count); //Read errors foreach (DocumentError error in results.Errors) @@ -254,7 +279,7 @@ internal static List ConvertToHealthcareEntityCollection(IEnum internal static AnalyzeHealthcareEntitiesResultCollection ConvertToAnalyzeHealthcareEntitiesResultCollection(HealthcareResult results, IDictionary idToIndexMap) { - var healthcareEntititesResults = new List(); + var healthcareEntititesResults = new List(results.Errors.Count); //Read errors foreach (DocumentError error in results.Errors) @@ -330,7 +355,7 @@ internal static SummarySentenceCollection ConvertToSummarySentenceCollection(Ext internal static ExtractSummaryResultCollection ConvertToExtractSummaryResultCollection(ExtractiveSummarizationResult results, IDictionary idToIndexMap) { - var extractedSummaries = new List(); + var extractedSummaries = new List(results.Errors.Count); //Read errors foreach (DocumentError error in results.Errors) @@ -351,6 +376,60 @@ internal static ExtractSummaryResultCollection ConvertToExtractSummaryResultColl #endregion + #region Multi Category Classify + internal static List ConvertToClassificationCategoryList(List classifications) + => classifications.Select((classification) => new ClassificationCategory(classification)).ToList(); + + internal static ClassificationCategoryCollection ConvertToClassificationCategoryCollection(MultiClassificationDocument extractedClassificationsDocuments) + { + return new ClassificationCategoryCollection(ConvertToClassificationCategoryList(extractedClassificationsDocuments.Classifications.ToList()), ConvertToWarnings(extractedClassificationsDocuments.Warnings)); + } + + internal static MultiCategoryClassifyResultCollection ConvertToMultiCategoryClassifyResultCollection(CustomMultiClassificationResult results, IDictionary idToIndexMap) + { + var classifiedCustomCategoryResults = new List(results.Errors.Count); + + //Read errors + foreach (DocumentError error in results.Errors) + { + classifiedCustomCategoryResults.Add(new MultiCategoryClassifyResult(error.Id, ConvertToError(error.Error))); + } + + //Read classifications + foreach (MultiClassificationDocument classificationsDocument in results.Documents) + { + classifiedCustomCategoryResults.Add(new MultiCategoryClassifyResult(classificationsDocument.Id, classificationsDocument.Statistics ?? default, ConvertToClassificationCategoryCollection(classificationsDocument), ConvertToWarnings(classificationsDocument.Warnings))); + } + + classifiedCustomCategoryResults = SortHeterogeneousCollection(classifiedCustomCategoryResults, idToIndexMap); + + return new MultiCategoryClassifyResultCollection(classifiedCustomCategoryResults, results.Statistics, results.ProjectName, results.DeploymentName); + } + #endregion + + #region SingleCategoryClassifyResult + internal static SingleCategoryClassifyResultCollection ConvertToSingleCategoryClassifyResultCollection(CustomSingleClassificationResult results, IDictionary idToIndexMap) + { + var classifiedCustomCategoryResults = new List(results.Errors.Count); + + //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) @@ -370,7 +449,8 @@ internal static PiiTask ConvertToPiiTask(RecognizePiiEntitiesAction action) return new PiiTask() { - Parameters = parameters + Parameters = parameters, + TaskName = action.ActionName }; } @@ -383,7 +463,8 @@ internal static EntityLinkingTask ConvertToLinkedEntitiesTask(RecognizeLinkedEnt ModelVersion = action.ModelVersion, StringIndexType = Constants.DefaultStringIndexType, LoggingOptOut = action.DisableServiceLogs - } + }, + TaskName = action.ActionName }; } @@ -396,7 +477,8 @@ internal static EntitiesTask ConvertToEntitiesTask(RecognizeEntitiesAction actio ModelVersion = action.ModelVersion, StringIndexType = Constants.DefaultStringIndexType, LoggingOptOut = action.DisableServiceLogs - } + }, + TaskName = action.ActionName }; } @@ -408,7 +490,8 @@ internal static KeyPhrasesTask ConvertToKeyPhrasesTask(ExtractKeyPhrasesAction a { ModelVersion = action.ModelVersion, LoggingOptOut = action.DisableServiceLogs - } + }, + TaskName = action.ActionName }; } @@ -422,7 +505,8 @@ internal static SentimentAnalysisTask ConvertToSentimentAnalysisTask(AnalyzeSent StringIndexType = Constants.DefaultStringIndexType, LoggingOptOut = action.DisableServiceLogs, OpinionMining = action.IncludeOpinionMining - } + }, + TaskName = action.ActionName }; } @@ -437,13 +521,50 @@ internal static ExtractiveSummarizationTask ConvertToExtractiveSummarizationTask LoggingOptOut = action.DisableServiceLogs, SentenceCount = action.MaxSentenceCount, SortBy = action.OrderBy - } + }, + TaskName = action.ActionName + }; + } + + internal static CustomEntitiesTask ConvertToCustomEntitiesTask(RecognizeCustomEntitiesAction action) + { + return new CustomEntitiesTask() + { + Parameters = new CustomEntitiesTaskParameters(action.ProjectName, action.DeploymentName) + { + LoggingOptOut = action.DisableServiceLogs, + }, + TaskName = action.ActionName + }; + } + + internal static CustomSingleClassificationTask ConvertToCustomSingleClassificationTask(SingleCategoryClassifyAction action) + { + return new CustomSingleClassificationTask() + { + Parameters = new CustomSingleClassificationTaskParameters(action.ProjectName, action.DeploymentName) + { + LoggingOptOut = action.DisableServiceLogs, + }, + TaskName = action.ActionName + }; + } + + internal static CustomMultiClassificationTask ConvertToCustomMultiClassificationTask(MultiCategoryClassifyAction action) + { + return new CustomMultiClassificationTask() + { + Parameters = new CustomMultiClassificationTaskParameters(action.ProjectName, action.DeploymentName) + { + LoggingOptOut = action.DisableServiceLogs, + }, + TaskName = action.ActionName }; } internal static IList ConvertFromRecognizeLinkedEntitiesActionsToTasks(IReadOnlyCollection recognizeLinkedEntitiesActions) { - List list = new List(); + List list = new List(recognizeLinkedEntitiesActions.Count); foreach (RecognizeLinkedEntitiesAction action in recognizeLinkedEntitiesActions) { @@ -455,7 +576,7 @@ internal static IList ConvertFromRecognizeLinkedEntitiesActio internal static IList ConvertFromRecognizeEntitiesActionsToTasks(IReadOnlyCollection recognizeEntitiesActions) { - List list = new List(); + List list = new List(recognizeEntitiesActions.Count); foreach (RecognizeEntitiesAction action in recognizeEntitiesActions) { @@ -467,7 +588,7 @@ internal static IList ConvertFromRecognizeEntitiesActionsToTasks(I internal static IList ConvertFromExtractKeyPhrasesActionsToTasks(IReadOnlyCollection extractKeyPhrasesActions) { - List list = new List(); + List list = new List(extractKeyPhrasesActions.Count); foreach (ExtractKeyPhrasesAction action in extractKeyPhrasesActions) { @@ -479,7 +600,7 @@ internal static IList ConvertFromExtractKeyPhrasesActionsToTasks internal static IList ConvertFromRecognizePiiEntitiesActionsToTasks(IReadOnlyCollection recognizePiiEntitiesActions) { - List list = new List(); + List list = new List(recognizePiiEntitiesActions.Count); foreach (RecognizePiiEntitiesAction action in recognizePiiEntitiesActions) { @@ -491,7 +612,7 @@ internal static IList ConvertFromRecognizePiiEntitiesActionsToTasks(IRe internal static IList ConvertFromAnalyzeSentimentActionsToTasks(IReadOnlyCollection analyzeSentimentActions) { - List list = new List(); + List list = new List(analyzeSentimentActions.Count); foreach (AnalyzeSentimentAction action in analyzeSentimentActions) { @@ -503,7 +624,7 @@ internal static IList ConvertFromAnalyzeSentimentActionsT internal static IList ConvertFromExtractSummaryActionsToTasks(IReadOnlyCollection extractSummaryActions) { - List list = new List(); + List list = new List(extractSummaryActions.Count); foreach (ExtractSummaryAction action in extractSummaryActions) { @@ -512,6 +633,40 @@ internal static IList ConvertFromExtractSummaryActi return list; } + internal static IList ConvertFromSingleCategoryClassifyActionsToTasks(IReadOnlyCollection singleCategoryClassifyActions) + { + List list = new List(singleCategoryClassifyActions.Count); + + foreach (SingleCategoryClassifyAction action in singleCategoryClassifyActions) + { + list.Add(ConvertToCustomSingleClassificationTask(action)); + } + + return list; + } + + internal static IList ConvertFromMultiCategoryClassifyActionsToTasks(IReadOnlyCollection MultiCategoryClassifyActions) + { + List list = new List(MultiCategoryClassifyActions.Count); + + foreach (MultiCategoryClassifyAction action in MultiCategoryClassifyActions) + { + list.Add(ConvertToCustomMultiClassificationTask(action)); + } + + return list; + } + internal static IList ConvertFromRecognizeCustomEntitiesActionsToTasks(IReadOnlyCollection recognizeCustomEntitiesActions) + { + var list = new List(recognizeCustomEntitiesActions.Count); + + foreach (var action in recognizeCustomEntitiesActions) + { + list.Add(ConvertToCustomEntitiesTask(action)); + } + + return list; + } private static string[] parseActionErrorTarget(string targetReference) { @@ -519,7 +674,6 @@ private static string[] parseActionErrorTarget(string 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)); // action could be failed and the target reference is "#/tasks/keyPhraseExtractionTasks/0"; Match targetMatch = _targetRegex.Match(targetReference); @@ -542,6 +696,9 @@ internal static AnalyzeActionsResult ConvertToAnalyzeActionsResult(AnalyzeJobSta IDictionary entitiesLinkingRecognitionErrors = new Dictionary(); IDictionary analyzeSentimentErrors = new Dictionary(); IDictionary extractSummaryErrors = new Dictionary(); + IDictionary customEntitiesRecognitionErrors = new Dictionary(); + IDictionary singleCategoryClassifyErrors = new Dictionary(); + IDictionary multiCategoryClassifyErrors = new Dictionary(); if (jobState.Errors.Any()) { @@ -578,6 +735,18 @@ internal static AnalyzeActionsResult ConvertToAnalyzeActionsResult(AnalyzeJobSta { extractSummaryErrors.Add(taskIndex, error); } + else if ("customEntityRecognitionTasks".Equals(taskName)) + { + customEntitiesRecognitionErrors.Add(taskIndex, error); + } + else if ("customSingleClassificationTasks".Equals(taskName)) + { + singleCategoryClassifyErrors.Add(taskIndex, error); + } + else if ("customMultiClassificationTasks".Equals(taskName)) + { + multiCategoryClassifyErrors.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,12 +760,60 @@ 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), + ConvertToRecognizeCustomEntitiesActionsResults(jobState, map, customEntitiesRecognitionErrors), + ConvertToSingleCategoryClassifyResults(jobState, map, singleCategoryClassifyErrors), + ConvertToMultiCategoryClassifyActionsResults(jobState, map, multiCategoryClassifyErrors) + ); + } + + private static IReadOnlyCollection ConvertToMultiCategoryClassifyActionsResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) + { + var collection = new List(jobState.Tasks.CustomMultiClassificationTasks.Count); + int index = 0; + foreach (CustomMultiClassificationTasksItem task in jobState.Tasks.CustomMultiClassificationTasks) + { + tasksErrors.TryGetValue(index, out TextAnalyticsErrorInternal taskError); + + if (taskError != null) + { + collection.Add(new MultiCategoryClassifyActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); + } + else + { + collection.Add(new MultiCategoryClassifyActionResult(ConvertToMultiCategoryClassifyResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); + } + index++; + } + + return collection; + } + + private static IReadOnlyCollection ConvertToSingleCategoryClassifyResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) + { + var collection = new List(jobState.Tasks.CustomSingleClassificationTasks.Count); + int index = 0; + foreach (CustomSingleClassificationTasksItem task in jobState.Tasks.CustomSingleClassificationTasks) + { + tasksErrors.TryGetValue(index, out TextAnalyticsErrorInternal taskError); + + if (taskError != null) + { + collection.Add(new SingleCategoryClassifyActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); + } + else + { + collection.Add(new SingleCategoryClassifyActionResult(ConvertToSingleCategoryClassifyResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); + } + index++; + } + + return collection; } private static IReadOnlyCollection ConvertToAnalyzeSentimentActionsResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) { - var collection = new List(); + var collection = new List(jobState.Tasks.SentimentAnalysisTasks.Count); int index = 0; foreach (SentimentAnalysisTasksItem task in jobState.Tasks.SentimentAnalysisTasks) { @@ -604,11 +821,11 @@ private static IReadOnlyCollection ConvertToAnalyz if (taskError != null) { - collection.Add(new AnalyzeSentimentActionResult(task.LastUpdateDateTime, taskError)); + collection.Add(new AnalyzeSentimentActionResult( task.TaskName,task.LastUpdateDateTime, taskError)); } else { - collection.Add(new AnalyzeSentimentActionResult(ConvertToAnalyzeSentimentResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime)); + collection.Add(new AnalyzeSentimentActionResult(ConvertToAnalyzeSentimentResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } @@ -618,7 +835,7 @@ private static IReadOnlyCollection ConvertToAnalyz private static IReadOnlyCollection ConvertToRecognizeLinkedEntitiesActionsResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) { - var collection = new List(); + var collection = new List(jobState.Tasks.EntityLinkingTasks.Count); int index = 0; foreach (EntityLinkingTasksItem task in jobState.Tasks.EntityLinkingTasks) { @@ -626,11 +843,11 @@ private static IReadOnlyCollection ConvertT if (taskError != null) { - collection.Add(new RecognizeLinkedEntitiesActionResult(task.LastUpdateDateTime, taskError)); + collection.Add(new RecognizeLinkedEntitiesActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new RecognizeLinkedEntitiesActionResult(ConvertToRecognizeLinkedEntitiesResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime)); + collection.Add(new RecognizeLinkedEntitiesActionResult(ConvertToRecognizeLinkedEntitiesResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } @@ -640,7 +857,7 @@ private static IReadOnlyCollection ConvertT private static IReadOnlyCollection ConvertToExtractKeyPhrasesActionResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) { - var collection = new List(); + var collection = new List(jobState.Tasks.KeyPhraseExtractionTasks.Count); int index = 0; foreach (KeyPhraseExtractionTasksItem task in jobState.Tasks.KeyPhraseExtractionTasks) { @@ -648,11 +865,11 @@ private static IReadOnlyCollection ConvertToExtra if (taskError != null) { - collection.Add(new ExtractKeyPhrasesActionResult(task.LastUpdateDateTime, taskError)); + collection.Add(new ExtractKeyPhrasesActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new ExtractKeyPhrasesActionResult(ConvertToExtractKeyPhrasesResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime)); + collection.Add(new ExtractKeyPhrasesActionResult(ConvertToExtractKeyPhrasesResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } @@ -662,7 +879,7 @@ private static IReadOnlyCollection ConvertToExtra private static IReadOnlyCollection ConvertToRecognizePiiEntitiesActionsResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) { - var collection = new List(); + var collection = new List(jobState.Tasks.EntityRecognitionPiiTasks.Count); int index = 0; foreach (EntityRecognitionPiiTasksItem task in jobState.Tasks.EntityRecognitionPiiTasks) { @@ -670,11 +887,11 @@ private static IReadOnlyCollection ConvertToRe if (taskError != null) { - collection.Add(new RecognizePiiEntitiesActionResult(task.LastUpdateDateTime, taskError)); + collection.Add(new RecognizePiiEntitiesActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new RecognizePiiEntitiesActionResult(ConvertToRecognizePiiEntitiesResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime)); + collection.Add(new RecognizePiiEntitiesActionResult(ConvertToRecognizePiiEntitiesResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } @@ -684,7 +901,7 @@ private static IReadOnlyCollection ConvertToRe private static IReadOnlyCollection ConvertToRecognizeEntitiesActionsResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) { - var collection = new List(); + var collection = new List(jobState.Tasks.EntityRecognitionTasks.Count); int index = 0; foreach (EntityRecognitionTasksItem task in jobState.Tasks.EntityRecognitionTasks) { @@ -692,11 +909,33 @@ private static IReadOnlyCollection ConvertToRecog if (taskError != null) { - collection.Add(new RecognizeEntitiesActionResult(task.LastUpdateDateTime, taskError)); + collection.Add(new RecognizeEntitiesActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); + } + else + { + collection.Add(new RecognizeEntitiesActionResult(ConvertToRecognizeEntitiesResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); + } + index++; + } + + return collection; + } + + private static IReadOnlyCollection ConvertToRecognizeCustomEntitiesActionsResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) + { + var collection = new List(jobState.Tasks.CustomEntityRecognitionTasks.Count); + int index = 0; + foreach (var task in jobState.Tasks.CustomEntityRecognitionTasks) + { + tasksErrors.TryGetValue(index, out TextAnalyticsErrorInternal taskError); + + if (taskError != null) + { + collection.Add(new RecognizeCustomEntitiesActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new RecognizeEntitiesActionResult(ConvertToRecognizeEntitiesResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime)); + collection.Add(new RecognizeCustomEntitiesActionResult(ConvertToRecognizeCustomEntitiesResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } @@ -706,7 +945,7 @@ private static IReadOnlyCollection ConvertToRecog private static IReadOnlyCollection ConvertToExtractSummaryActionsResults(AnalyzeJobState jobState, IDictionary idToIndexMap, IDictionary tasksErrors) { - var collection = new List(); + var collection = new List(jobState.Tasks.ExtractiveSummarizationTasks.Count); int index = 0; foreach (ExtractiveSummarizationTasksItem task in jobState.Tasks.ExtractiveSummarizationTasks) { @@ -714,11 +953,11 @@ private static IReadOnlyCollection ConvertToExtractS if (taskError != null) { - collection.Add(new ExtractSummaryActionResult(task.LastUpdateDateTime, taskError)); + collection.Add(new ExtractSummaryActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new ExtractSummaryActionResult(ConvertToExtractSummaryResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime)); + collection.Add(new ExtractSummaryActionResult(ConvertToExtractSummaryResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md index 88ce5417402c..dd4b95888480 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/d758c4205d331c552cafbb755ed02673b9fa5e22/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.2-preview.1/TextAnalytics.json + - https://raw.githubusercontent.com/Azure/azure-rest-api-specs/11cb5c629a836dc99454d85c233405f952b555d8/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.2-preview.2/TextAnalytics.json modelerfour: seal-single-value-enum-by-default: true ``` diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs index 7ed226fd9de9..800015bc3f42 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) { @@ -134,36 +136,6 @@ public async Task AnalyzeOperationKeyPhrasesFromRequestOptionsFull() ValidateRequestOptions(contentString, true); } - [Test] - public void AnalyzeOperationKeyPhrasesWithTwoActions() - { - 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() - { - ExtractKeyPhrasesActions = new List() - { - new ExtractKeyPhrasesAction(), - new ExtractKeyPhrasesAction() - { - ModelVersion = "InvalidVersion" - } - }, - }; - - ArgumentException ex = Assert.ThrowsAsync(async () => await client.StartAnalyzeActionsAsync(documents, batchActions)); - Assert.AreEqual("Multiple of the same action is not currently supported.", ex.Message); - } - #endregion Key phrases #region entities @@ -264,8 +236,12 @@ public async Task AnalyzeOperationRecognizeEntitiesWithRequestOptionsFull() ValidateRequestOptions(contentString, true); } + #endregion entities + + #region Custom Entities + [Test] - public void AnalyzeOperationRecognizeEntitiesWithTwoActions() + public async Task AnalyzeOperationRecognizeCustomEntitiesWithDisableServiceLogs() { var mockResponse = new MockResponse(202); mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); @@ -278,23 +254,25 @@ public void AnalyzeOperationRecognizeEntitiesWithTwoActions() "Elon Musk is the CEO of SpaceX and Tesla." }; - TextAnalyticsActions batchActions = new() + var actions = new RecognizeCustomEntitiesAction(FakeProjectName, FakeDeploymentName) { - RecognizeEntitiesActions = new List() - { - new RecognizeEntitiesAction(), - new RecognizeEntitiesAction() - { - ModelVersion = "InvalidVersion" - } - }, + 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); - } + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() { actions }, + }; - #endregion entities + 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); + } + #endregion #region linked entities @@ -394,36 +372,6 @@ public async Task AnalyzeOperationRecognizeLinkedEntitiesWithRequestOptionsFull( ValidateRequestOptions(contentString, true); } - [Test] - public void AnalyzeOperationRecognizeLinkedEntitiesWithTwoActions() - { - 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() - { - RecognizeLinkedEntitiesActions = new List() - { - new RecognizeLinkedEntitiesAction(), - new RecognizeLinkedEntitiesAction() - { - ModelVersion = "InvalidVersion" - } - }, - }; - - ArgumentException ex = Assert.ThrowsAsync(async () => await client.StartAnalyzeActionsAsync(documents, batchActions)); - Assert.AreEqual("Multiple of the same action is not currently supported.", ex.Message); - } - #endregion linked entities #region Pii entities @@ -538,36 +486,6 @@ public async Task AnalyzeOperationRecognizePiiEntitiesWithPiiOptionsFull() Assert.AreEqual(expectedPiiCategoriesContent, piiCategories); } - [Test] - public void AnalyzeOperationRecognizePiiEntitiesWithTwoActions() - { - 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() - { - RecognizePiiEntitiesActions = new List() - { - new RecognizePiiEntitiesAction(), - new RecognizePiiEntitiesAction() - { - ModelVersion = "InvalidVersion" - } - }, - }; - - ArgumentException ex = Assert.ThrowsAsync(async () => await client.StartAnalyzeActionsAsync(documents, batchActions)); - Assert.AreEqual("Multiple of the same action is not currently supported.", ex.Message); - } - #endregion Pii entities #region Analyze sentiment @@ -675,8 +593,12 @@ public async Task AnalyzeOperationAnalyzeSentimentWithAnalyzeSentimentOptionsFul Assert.AreEqual(expectedOpinionMiningContent, opinionMining); } + #endregion Analyze sentiment + + #region Extract summary + [Test] - public void AnalyzeOperationAnalyzeSentimentWithTwoActions() + public async Task AnalyzeOperationExtractSummaryWithDisableServiceLogs() { var mockResponse = new MockResponse(202); mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); @@ -689,28 +611,31 @@ public void AnalyzeOperationAnalyzeSentimentWithTwoActions() "Elon Musk is the CEO of SpaceX and Tesla." }; - TextAnalyticsActions batchActions = new() + var actions = new ExtractSummaryAction() { - AnalyzeSentimentActions = new List() - { - new AnalyzeSentimentAction(), - new AnalyzeSentimentAction() - { - ModelVersion = "InvalidVersion" - } - }, + DisableServiceLogs = true + }; + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + ExtractSummaryActions = new List() { actions }, }; - ArgumentException ex = Assert.ThrowsAsync(async () => await client.StartAnalyzeActionsAsync(documents, batchActions)); - Assert.AreEqual("Multiple of the same action is not currently supported.", ex.Message); + 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); } - #endregion Analyze sentiment + #endregion Extract summary - #region Extract summary + #region Multi Category Classify [Test] - public async Task AnalyzeOperationExtractSummaryWithDisableServiceLogs() + public async Task AnalyzeOperationMultiCategoryClassifyWithDisableServiceLogs() { var mockResponse = new MockResponse(202); mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); @@ -723,14 +648,14 @@ public async Task AnalyzeOperationExtractSummaryWithDisableServiceLogs() "Elon Musk is the CEO of SpaceX and Tesla." }; - var actions = new ExtractSummaryAction() + var actions = new MultiCategoryClassifyAction(FakeProjectName, FakeDeploymentName) { DisableServiceLogs = true }; TextAnalyticsActions batchActions = new TextAnalyticsActions() { - ExtractSummaryActions = new List() { actions }, + MultiCategoryClassifyActions = new List() { actions }, }; await client.StartAnalyzeActionsAsync(documents, batchActions); @@ -741,9 +666,12 @@ public async Task AnalyzeOperationExtractSummaryWithDisableServiceLogs() var expectedContent = "loggingOptOut\":true"; Assert.AreEqual(expectedContent, logging); } + #endregion + + #region Single Category Classify [Test] - public void AnalyzeOperationExtractSummaryWithTwoActions() + public async Task AnalyzeOperationSingleCategoryClassifyWithDisableServiceLogs() { var mockResponse = new MockResponse(202); mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); @@ -756,23 +684,25 @@ public void AnalyzeOperationExtractSummaryWithTwoActions() "Elon Musk is the CEO of SpaceX and Tesla." }; - TextAnalyticsActions batchActions = new() + var actions = new SingleCategoryClassifyAction(FakeProjectName, FakeDeploymentName) { - ExtractSummaryActions = new List() - { - new ExtractSummaryAction(), - new ExtractSummaryAction() - { - ModelVersion = "InvalidVersion" - } - }, + 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); - } + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() { actions }, + }; - #endregion Extract summary + 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); + } + #endregion [Test] public async Task AnalyzeOperationWithActionsError() @@ -815,6 +745,21 @@ public async Task AnalyzeOperationWithActionsError() ""code"": ""InvalidRequest"", ""message"": ""Some error"", ""target"": ""#/tasks/extractiveSummarizationTasks/0"" + }, + { + ""code"": ""InvalidRequest"", + ""message"": ""Some error"", + ""target"": ""#/tasks/customEntityRecognitionTasks/0"" + }, + { + ""code"": ""InvalidRequest"", + ""message"": ""Some error"", + ""target"": ""#/tasks/customSingleClassificationTasks/0"" + }, + { + ""code"": ""InvalidRequest"", + ""message"": ""Some error"", + ""target"": ""#/tasks/customMultiClassificationTasks/0"" } ], ""tasks"": { @@ -823,9 +768,9 @@ public async Task AnalyzeOperationWithActionsError() ""lastUpdateDateTime"": ""2021-03-03T22:39:37Z"" }, ""completed"": 0, - ""failed"": 6, + ""failed"": 9, ""inProgress"": 0, - ""total"": 6, + ""total"": 9, ""entityRecognitionTasks"": [ { ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", @@ -867,6 +812,27 @@ public async Task AnalyzeOperationWithActionsError() ""taskName"": ""something"", ""state"": ""failed"" } + ], + ""customEntityRecognitionTasks"": [ + { + ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", + ""taskName"": ""something"", + ""state"": ""failed"" + } + ], + ""customSingleClassificationTasks"": [ + { + ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", + ""taskName"": ""something"", + ""state"": ""failed"" + } + ], + ""customMultiClassificationTasks"": [ + { + ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", + ""taskName"": ""something"", + ""state"": ""failed"" + } ] } }")); @@ -890,16 +856,19 @@ public async Task AnalyzeOperationWithActionsError() RecognizeLinkedEntitiesActions = new List() { new RecognizeLinkedEntitiesAction() }, AnalyzeSentimentActions = new List() { new AnalyzeSentimentAction() }, ExtractSummaryActions = new List() { new ExtractSummaryAction() }, + RecognizeCustomEntitiesActions = new List() { new RecognizeCustomEntitiesAction(FakeProjectName, FakeDeploymentName) }, + SingleCategoryClassifyActions = new List { new SingleCategoryClassifyAction(FakeProjectName, FakeDeploymentName)}, + MultiCategoryClassifyActions = new List() { new MultiCategoryClassifyAction(FakeProjectName, FakeDeploymentName) }, DisplayName = "AnalyzeOperationBatchWithErrorTest" }; var operation = new AnalyzeActionsOperation("75d521bc-c2aa-4d8a-aabe-713e72d53a2d", client); await operation.UpdateStatusAsync(); - Assert.AreEqual(6, operation.ActionsFailed); + Assert.AreEqual(9, operation.ActionsFailed); Assert.AreEqual(0, operation.ActionsSucceeded); Assert.AreEqual(0, operation.ActionsInProgress); - Assert.AreEqual(6, operation.ActionsTotal); + Assert.AreEqual(9, operation.ActionsTotal); //Take the first page AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); @@ -910,6 +879,9 @@ public async Task AnalyzeOperationWithActionsError() RecognizeLinkedEntitiesActionResult entityLinkingActionsResults = resultCollection.RecognizeLinkedEntitiesResults.FirstOrDefault(); AnalyzeSentimentActionResult analyzeSentimentActionsResults = resultCollection.AnalyzeSentimentResults.FirstOrDefault(); ExtractSummaryActionResult extractSummaryActionsResults = resultCollection.ExtractSummaryResults.FirstOrDefault(); + RecognizeCustomEntitiesActionResult recognizeCustomEntitiesActionResults = resultCollection.RecognizeCustomEntitiesResults.FirstOrDefault(); + SingleCategoryClassifyActionResult singleCategoryClassifyActionResult = resultCollection.SingleCategoryClassifyResults.FirstOrDefault(); + MultiCategoryClassifyActionResult multiCategoryClassifyActionResult = resultCollection.MultiCategoryClassifyResults.FirstOrDefault(); Assert.IsTrue(entitiesActionsResults.HasError); Assert.Throws(() => entitiesActionsResults.DocumentsResults.GetType()); @@ -928,6 +900,15 @@ public async Task AnalyzeOperationWithActionsError() Assert.IsTrue(extractSummaryActionsResults.HasError); Assert.Throws(() => extractSummaryActionsResults.DocumentsResults.GetType()); + + Assert.IsTrue(recognizeCustomEntitiesActionResults.HasError); + Assert.Throws(() => recognizeCustomEntitiesActionResults.DocumentsResults.GetType()); + + Assert.IsTrue(singleCategoryClassifyActionResult.HasError); + Assert.Throws(() => singleCategoryClassifyActionResult.DocumentsResults.GetType()); + + Assert.IsTrue(multiCategoryClassifyActionResult.HasError); + Assert.Throws(() => multiCategoryClassifyActionResult.DocumentsResults.GetType()); } [Test] diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs index 028452dda419..7325261828ef 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,9 @@ public async Task AnalyzeOperationTest() IReadOnlyCollection entityLinkingActionsResults = resultCollection.RecognizeLinkedEntitiesResults; IReadOnlyCollection analyzeSentimentActionsResults = resultCollection.AnalyzeSentimentResults; IReadOnlyCollection extractSummaryActionsResults = resultCollection.ExtractSummaryResults; + IReadOnlyCollection recognizeCustomEntitiesActionResults = resultCollection.RecognizeCustomEntitiesResults; + IReadOnlyCollection singleCategoryClassifyResults = resultCollection.SingleCategoryClassifyResults; + IReadOnlyCollection multiCategoryClassifyResults = resultCollection.MultiCategoryClassifyResults; Assert.IsNotNull(keyPhrasesActionsResults); Assert.IsNotNull(entitiesActionsResults); @@ -89,6 +93,9 @@ public async Task AnalyzeOperationTest() Assert.IsNotNull(entityLinkingActionsResults); Assert.IsNotNull(analyzeSentimentActionsResults); Assert.IsNotNull(extractSummaryActionsResults); + Assert.IsNotNull(singleCategoryClassifyResults); + Assert.IsNotNull(multiCategoryClassifyResults); + Assert.IsNotNull(recognizeCustomEntitiesActionResults); var keyPhrasesListId1 = new List { "CEO", "SpaceX", "Elon Musk", "Tesla" }; var keyPhrasesListId2 = new List { "Tesla stock" }; @@ -294,6 +301,124 @@ public async Task AnalyzeOperationWithMultipleActions() Assert.AreEqual(TextSentiment.Neutral, analyzeSentimentDocumentsResults[1].DocumentSentiment.Sentiment); } + [Ignore("issue: results in an internal server error | bug link: https://dev.azure.com/msazure/Cognitive%20Services/_workitems/edit/12413250")] + public async Task AnalyzeOperationWithMultipleActionsOfSameType() + { + TextAnalyticsClient client = GetClient(); + + var batchDocuments = new List + { + new TextDocumentInput("1", "Microsoft was founded by Bill Gates and Paul Allen.") + { + Language = "en", + }, + new TextDocumentInput("2", "Mi perro y mi gato tienen que ir al veterinario.") + { + Language = "es", + } + }; + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + ExtractKeyPhrasesActions = new List() + { + new ExtractKeyPhrasesAction() + { ActionName = "DisableServaiceLogsTrue", DisableServiceLogs = true }, + new ExtractKeyPhrasesAction() + { ActionName = "DisableServiceLogsFalse"}, + }, + RecognizeEntitiesActions = new List() + { + new RecognizeEntitiesAction() + { ActionName = "DisableServiceLogsTrue", DisableServiceLogs = true }, + new RecognizeEntitiesAction() + { ActionName = "DisableServiceLogsFalse" }, + }, + RecognizePiiEntitiesActions = new List() + { + new RecognizePiiEntitiesAction() + { ActionName = "DisableServiceLogsTrue", DisableServiceLogs = true }, + new RecognizePiiEntitiesAction() + { ActionName = "DisableServiceLogsFalse" }, + }, + RecognizeLinkedEntitiesActions = new List() + { + new RecognizeLinkedEntitiesAction() + { ActionName = "DisableServiceLogsTrue", DisableServiceLogs = true }, + new RecognizeLinkedEntitiesAction() + { ActionName = "DisableServiceLogsFalse" }, + }, + AnalyzeSentimentActions = new List() + { + new AnalyzeSentimentAction() + { ActionName = "DisableServiceLogsTrue", DisableServiceLogs = true }, + new AnalyzeSentimentAction() + { ActionName = "DisableServiceLogsFalse" }, + }, + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + { ActionName = "DisableServiceLogsTrue", DisableServiceLogs = true }, + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + { ActionName = "DisableServiceLogsFalse" }, + }, + SingleCategoryClassifyActions = new List() + { + new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) + { ActionName = "DisableServiceLogsTrue", DisableServiceLogs = true }, + new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) + { ActionName = "DisableServiceLogsFalse" }, + }, + MultiCategoryClassifyActions = new List() + { + new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) + { ActionName = "DisableServiceLogsTrue", DisableServiceLogs = true }, + new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) + { ActionName = "DisableServiceLogsFalse"}, + }, + DisplayName = "AnalyzeOperationWithMultipleTasksOfSameType" + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchDocuments, batchActions); + + Assert.AreEqual(0, operation.ActionsFailed); + Assert.AreEqual(0, operation.ActionsSucceeded); + Assert.AreEqual(0, operation.ActionsInProgress); + Assert.AreEqual(0, operation.ActionsTotal); + + await operation.WaitForCompletionAsync(); + + Assert.AreEqual(0, operation.ActionsFailed); + Assert.AreEqual(16, operation.ActionsSucceeded); + Assert.AreEqual(0, operation.ActionsInProgress); + Assert.AreEqual(16, operation.ActionsTotal); + Assert.AreNotEqual(new DateTimeOffset(), operation.CreatedOn); + Assert.AreNotEqual(new DateTimeOffset(), operation.LastModified); + Assert.AreNotEqual(new DateTimeOffset(), operation.ExpiresOn); + + //Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection entitiesActionsResults = resultCollection.RecognizeEntitiesResults; + IReadOnlyCollection keyPhrasesActionsResults = resultCollection.ExtractKeyPhrasesResults; + IReadOnlyCollection piiActionsResults = resultCollection.RecognizePiiEntitiesResults; + IReadOnlyCollection entityLinkingActionsResults = resultCollection.RecognizeLinkedEntitiesResults; + IReadOnlyCollection analyzeSentimentActionsResults = resultCollection.AnalyzeSentimentResults; + IReadOnlyCollection recognizeCustomEntitiesResults = resultCollection.RecognizeCustomEntitiesResults; + IReadOnlyCollection singleCategoryClassifyResults = resultCollection.SingleCategoryClassifyResults; + IReadOnlyCollection multiCategoryClassifyResults = resultCollection.MultiCategoryClassifyResults; + + Assert.IsNotNull(keyPhrasesActionsResults); + Assert.IsNotNull(entitiesActionsResults); + Assert.IsNotNull(piiActionsResults); + Assert.IsNotNull(entityLinkingActionsResults); + Assert.IsNotNull(analyzeSentimentActionsResults); + Assert.IsNotNull(recognizeCustomEntitiesResults); + Assert.IsNotNull(singleCategoryClassifyResults); + Assert.IsNotNull(multiCategoryClassifyResults); + Assert.AreEqual("AnalyzeOperationWithMultipleTasks", operation.DisplayName); + } + [RecordedTest] public async Task AnalyzeOperationWithPagination() { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs index 0e7f880e2f27..0af27ea033dc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs @@ -434,6 +434,42 @@ public async Task AnalyzeSentimentBatchWithNullTextTest() Assert.AreEqual(exceptionMessage, ex.Message); } + [RecordedTest] + public async Task AnalyzeSentimentWithMultipleActions() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + AnalyzeSentimentActions = new List() + { + new AnalyzeSentimentAction() + { + DisableServiceLogs = true, + ActionName = "AnalyzeSentimentWithDisabledServiceLogs" + }, + new AnalyzeSentimentAction() + { + ActionName = "AnalyzeSentiment" + } + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchConvenienceDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection AnalyzeSentimentActionsResults = resultCollection.AnalyzeSentimentResults; + + Assert.IsNotNull(AnalyzeSentimentActionsResults); + + IList expected = new List { "AnalyzeSentiment", "AnalyzeSentimentWithDisabledServiceLogs" }; + CollectionAssert.AreEquivalent(expected, AnalyzeSentimentActionsResults.Select(result => result.ActionName)); + } + private void CheckAnalyzeSentimentProperties(DocumentSentiment doc, bool opinionMining = false) { Assert.IsNotNull(doc.ConfidenceScores.Positive); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs index 726dc5418bcf..c77130e808f5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs @@ -197,6 +197,42 @@ public async Task ExtractKeyPhrasesBatchWithNullTextTest() Assert.AreEqual(exceptionMessage, ex.Message); } + [RecordedTest] + public async Task ExtractKeyPhrasesWithMultipleActions() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + ExtractKeyPhrasesActions = new List() + { + new ExtractKeyPhrasesAction() + { + DisableServiceLogs = true, + ActionName = "ExtractKeyPhrasesWithDisabledServiceLogs" + }, + new ExtractKeyPhrasesAction() + { + ActionName = "ExtractKeyPhrases" + } + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchConvenienceDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection ExtractKeyPhrasesActionsResults = resultCollection.ExtractKeyPhrasesResults; + + Assert.IsNotNull(ExtractKeyPhrasesActionsResults); + + IList expected = new List { "ExtractKeyPhrases", "ExtractKeyPhrasesWithDisabledServiceLogs" }; + CollectionAssert.AreEquivalent(expected, ExtractKeyPhrasesActionsResults.Select(result => result.ActionName)); + } + private void ValidateInDocumenResult(KeyPhraseCollection keyPhrases, int minKeyPhrasesCount = default) { Assert.IsNotNull(keyPhrases.Warnings); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractSummaryTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractSummaryTests.cs index 2613bf540ad0..c0a2d3f158bd 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) @@ -275,6 +275,42 @@ public async Task ExtractSummaryBatchWithStatisticsTest() ValidateSummaryBatchResult(summaryDocumentsResults, includeStatistics: true); } + [RecordedTest] + public async Task ExtractSummaryWithMultipleActions() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + ExtractSummaryActions = new List() + { + new ExtractSummaryAction() + { + DisableServiceLogs = true, + ActionName = "ExtractSummaryWithDisabledServiceLogs" + }, + new ExtractSummaryAction() + { + ActionName = "ExtractSummary" + } + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_extractSummaryBatchDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection ExtractSummaryActionsResults = resultCollection.ExtractSummaryResults; + + Assert.IsNotNull(ExtractSummaryActionsResults); + + IList expected = new List { "ExtractSummary", "ExtractSummaryWithDisabledServiceLogs" }; + CollectionAssert.AreEquivalent(expected, ExtractSummaryActionsResults.Select(result => result.ActionName)); + } + private void ValidateSummaryDocumentResult(SummarySentenceCollection sentences, SummarySentencesOrder expectedOrder) { Assert.IsNotNull(sentences.Warnings); 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..d95a4fc65b1d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsTestEnvironment.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsTestEnvironment.cs @@ -9,5 +9,11 @@ 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 => GetRecordedVariable("TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME"); + public string SingleClassificationDeploymentName => GetRecordedVariable("TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME"); + public string MultiClassificationProjectName => GetRecordedVariable("TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME"); + public string MultiClassificationDeploymentName => GetRecordedVariable("TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME"); + public string RecognizeCustomEntitiesProjectName => GetRecordedVariable("TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME"); + public string RecognizeCustomEntitiesDeploymentName => GetRecordedVariable("TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME"); } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/MultiCategoryClassifyTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/MultiCategoryClassifyTests.cs new file mode 100644 index 000000000000..cd91dcf0ec52 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/MultiCategoryClassifyTests.cs @@ -0,0 +1,302 @@ +// 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 MultiCategoryClassifyTests : TextAnalyticsClientLiveTestBase + { + public MultiCategoryClassifyTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersion serviceVersion) + : base(isAsync, serviceVersion) + { + } + + private const string MultiCategoryClassifyDocument1 = + "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 MultiCategoryClassifyDocument2 = + "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_multiCategoryClassifyBatchConvenienceDocuments = new List + { + MultiCategoryClassifyDocument1, + MultiCategoryClassifyDocument2 + }; + + private static List s_multiCategoryClassifyBatchDocuments = new List + { + new TextDocumentInput("1", MultiCategoryClassifyDocument1) + { + Language = "en", + }, + new TextDocumentInput("2", MultiCategoryClassifyDocument2) + { + Language = "en", + } + }; + + [RecordedTest] + public async Task MultiCategoryClassifyWithDisableServiceLogs() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() { new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) { DisableServiceLogs = true } } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_multiCategoryClassifyBatchConvenienceDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection multiCategoryClassifyActionsResults = resultCollection.MultiCategoryClassifyResults; + + Assert.IsNotNull(multiCategoryClassifyActionsResults); + Assert.AreEqual(2, multiCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults.Count); + } + + [RecordedTest] + public async Task MultiCategoryClassifyBatchWithErrorTest() + { + TextAnalyticsClient client = GetClient(); + + var documents = new List + { + "Subject is taking 100mg of ibuprofen twice daily", + "", + }; + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() + { + new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(documents, batchActions, "en"); + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + List multiCategoryClassifyActions = resultCollection.MultiCategoryClassifyResults.ToList(); + + Assert.AreEqual(1, multiCategoryClassifyActions.Count); + + MultiCategoryClassifyResultCollection documentsResults = multiCategoryClassifyActions[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 MultiCategoryClassifyBatchConvenienceTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() + { + new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_multiCategoryClassifyBatchConvenienceDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection multiCategoryClassifyActionsResults = resultCollection.MultiCategoryClassifyResults; + MultiCategoryClassifyResultCollection multiCategoryClassifyResults = multiCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults; + + ValidateSummaryBatchResult(multiCategoryClassifyResults); + } + + [RecordedTest] + public async Task MultiCategoryClassifyBatchConvenienceWithStatisticsTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() + { + new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) + } + }; + + AnalyzeActionsOptions options = new AnalyzeActionsOptions() + { + IncludeStatistics = true + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_multiCategoryClassifyBatchConvenienceDocuments, batchActions, "en", options); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection multiCategoryClassifyActionsResults = resultCollection.MultiCategoryClassifyResults; + MultiCategoryClassifyResultCollection multiCategoryClassifyResults = multiCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults; + + ValidateSummaryBatchResult(multiCategoryClassifyResults, includeStatistics: true); + } + + [RecordedTest] + public async Task MultiCategoryClassifyBatchTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() + { + new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_multiCategoryClassifyBatchDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection multiCategoryClassifyActionsResults = resultCollection.MultiCategoryClassifyResults; + MultiCategoryClassifyResultCollection multiCategoryClassifyResults = multiCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults; + + ValidateSummaryBatchResult(multiCategoryClassifyResults); + } + + [RecordedTest] + public async Task MultiCategoryClassifyBatchWithStatisticsTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() + { + new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) + } + }; + + AnalyzeActionsOptions options = new AnalyzeActionsOptions() + { + IncludeStatistics = true + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_multiCategoryClassifyBatchDocuments, batchActions, options); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection multiCategoryClassifyActionsResults = resultCollection.MultiCategoryClassifyResults; + MultiCategoryClassifyResultCollection multiCategoryClassifyResults = multiCategoryClassifyActionsResults.FirstOrDefault().DocumentsResults; + + ValidateSummaryBatchResult(multiCategoryClassifyResults, includeStatistics: true); + } + + [RecordedTest] + public async Task MultiCategoryClassifyWithMultipleActions() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() + { + new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) + { + DisableServiceLogs = true, + ActionName = "MultiCategoryClassifyWithDisabledServiceLogs" + }, + new MultiCategoryClassifyAction(TestEnvironment.MultiClassificationProjectName, TestEnvironment.MultiClassificationDeploymentName) + { + ActionName = "MultiCategoryClassify" + } + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_multiCategoryClassifyBatchConvenienceDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection multiCategoryClassifyActionsResults = resultCollection.MultiCategoryClassifyResults; + + Assert.IsNotNull(multiCategoryClassifyActionsResults); + + IList expected = new List { "MultiCategoryClassify", "MultiCategoryClassifyWithDisabledServiceLogs" }; + CollectionAssert.AreEquivalent(expected, multiCategoryClassifyActionsResults.Select(result => result.ActionName)); + } + + private void ValidateSummaryDocumentResult(ClassificationCategoryCollection classificationCollection) + { + Assert.IsNotNull(classificationCollection.Warnings); + + foreach (var classification in classificationCollection) + { + Assert.GreaterOrEqual(classification.ConfidenceScore, 0); + Assert.LessOrEqual(classification.ConfidenceScore, 1); + Assert.NotNull(classification.Category); + } + } + + private void ValidateSummaryBatchResult(MultiCategoryClassifyResultCollection results, bool includeStatistics = false) + { + Assert.AreEqual(results.ProjectName, TestEnvironment.MultiClassificationProjectName); + Assert.AreEqual(results.DeploymentName, TestEnvironment.MultiClassificationDeploymentName); + + 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 (MultiCategoryClassifyResult 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.Classifications); + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeCustomEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeCustomEntitiesTests.cs new file mode 100644 index 000000000000..965dbdb7e2d1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeCustomEntitiesTests.cs @@ -0,0 +1,346 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Tests +{ + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_2_Preview_2)] + public class RecognizeCustomEntitiesTests : TextAnalyticsClientLiveTestBase + { + public RecognizeCustomEntitiesTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersion serviceVersion) + : base(isAsync, serviceVersion) + { + } + + private const string EnglishDocument1 = @"A recent report by the Government Accountability Office found a dramatic increase in oil."; + private static readonly List e_document1ExpectedOutput = new List + { + "recent", + "Government", + "Office", + "Accountability", + "dramatic", + "oil", + }; + + private const string EnglishDocument2 = @"Capital Call #20 for Berkshire Multifamily."; + private static readonly List e_document2ExpectedOutput = new List + { + "Berkshire Multifamily", + }; + + private const string SpanishDocument1 = @"Un informe reciente de la Oficina de Responsabilidad del Gobierno encontró un aumento dramático en el petróleo."; + private static readonly List s_document1ExpectedOutput = new List + { + "reciente", + "Responsabilidad", + "del", + "Gobierno", + "dramático", + "petróleo", + }; + + private static readonly List e_batchConvenienceDocuments = new List + { + EnglishDocument1, + EnglishDocument2 + }; + + private static readonly List s_batchDocuments = new List + { + new TextDocumentInput("1", EnglishDocument1) + { + Language = "en", + }, + new TextDocumentInput("2", SpanishDocument1) + { + Language = "es", + } + }; + + [RecordedTest] + public async Task RecognizeCustomEntitiesWithADDTest() + { + TextAnalyticsClient client = GetClient(useTokenCredential: true); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + var operation = await client.StartAnalyzeActionsAsync(new List { EnglishDocument1 }, batchActions); + + await operation.WaitForCompletionAsync(); + RecognizeCustomEntitiesResultCollection results = ExtractDocumentsResultsFromResponse(operation); + RecognizeEntitiesResult firstResult = results.First(); + CategorizedEntityCollection entites = firstResult.Entities; + ValidateInDocumentResult(entites, e_document1ExpectedOutput); + } + + [RecordedTest] + public async Task RecognizeCustomEntitiesTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + var operation = await client.StartAnalyzeActionsAsync(new List { EnglishDocument1 }, batchActions); + + await operation.WaitForCompletionAsync(); + RecognizeCustomEntitiesResultCollection results = ExtractDocumentsResultsFromResponse(operation); + RecognizeEntitiesResult firstResult = results.First(); + CategorizedEntityCollection entites = firstResult.Entities; + ValidateInDocumentResult(entites, e_document1ExpectedOutput); + } + + [RecordedTest] + public async Task RecognizeCustomEntitiesWithLanguageTest() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + List documentsBatch = new List + { + new TextDocumentInput("1", SpanishDocument1) { Language = "es" } + }; + + var operation = await client.StartAnalyzeActionsAsync(documentsBatch, batchActions); + + await operation.WaitForCompletionAsync(); + + RecognizeCustomEntitiesResultCollection results = ExtractDocumentsResultsFromResponse(operation); + RecognizeEntitiesResult firstResult = results.First(); + CategorizedEntityCollection entites = firstResult.Entities; + ValidateInDocumentResult(entites, s_document1ExpectedOutput); + } + + [RecordedTest] + public async Task RecognizeCustomEntitiesBatchWithErrorTest() + { + TextAnalyticsClient client = GetClient(); + var documents = new List + { + "Microsoft was founded by Bill Gates and Paul Allen.", + "", + "My cat might need to see a veterinarian." + }; + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + var operation = await client.StartAnalyzeActionsAsync(documents, batchActions); + + await operation.WaitForCompletionAsync(); + + var results = ExtractDocumentsResultsFromResponse(operation); + + Assert.IsTrue(!results[0].HasError); + Assert.IsTrue(!results[2].HasError); + + var exceptionMessage = "Cannot access result for document 1, due to error InvalidDocument: Document text is empty."; + Assert.IsTrue(results[1].HasError); + InvalidOperationException ex = Assert.Throws(() => results[1].Entities.GetType()); + Assert.AreEqual(exceptionMessage, ex.Message); + } + + [RecordedTest] + public async Task RecognizeCustomEntitiesBatchConvenienceTest() + { + TextAnalyticsClient client = GetClient(); + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + var operation = await client.StartAnalyzeActionsAsync(e_batchConvenienceDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + var results = ExtractDocumentsResultsFromResponse(operation); + + var expectedOutput = new Dictionary>() + { + { "0", e_document1ExpectedOutput }, + { "1", e_document2ExpectedOutput }, + }; + + ValidateBatchDocumentsResult(results, expectedOutput); + } + + [RecordedTest] + public async Task RecognizeCustomEntitiesBatchTest() + { + TextAnalyticsClient client = GetClient(); + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + var operation = await client.StartAnalyzeActionsAsync(s_batchDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + var results = ExtractDocumentsResultsFromResponse(operation); + + var expectedOutput = new Dictionary>() + { + { "1", e_document1ExpectedOutput }, + { "2", s_document1ExpectedOutput }, + }; + + ValidateBatchDocumentsResult(results, expectedOutput); + } + + [RecordedTest] + public void RecognizeCustomEntitiesBatchWithNullIdTest() + { + TextAnalyticsClient client = GetClient(); + var documents = new List { new TextDocumentInput(null, "Hello world") }; + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + RequestFailedException ex = Assert.ThrowsAsync(async () => await client.StartAnalyzeActionsAsync(documents, batchActions)); + Assert.AreEqual(TextAnalyticsErrorCode.InvalidDocument, ex.ErrorCode); + } + + [RecordedTest] + public async Task RecognizeCustomEntitiesWithMultipleActions() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + { + DisableServiceLogs = true, + ActionName = "RecognizeCustomEntitiesWithDisabledServiceLogs" + }, + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + { + ActionName = "RecognizeCustomEntities" + } + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(e_batchConvenienceDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection RecognizeCustomEntitiesActionsResults = resultCollection.RecognizeCustomEntitiesResults; + + Assert.IsNotNull(RecognizeCustomEntitiesActionsResults); + + IList expected = new List { "RecognizeCustomEntities", "RecognizeCustomEntitiesWithDisabledServiceLogs" }; + CollectionAssert.AreEquivalent(expected, RecognizeCustomEntitiesActionsResults.Select(result => result.ActionName)); + } + + private RecognizeCustomEntitiesResultCollection ExtractDocumentsResultsFromResponse(AnalyzeActionsOperation analyzeActionOperation) + { + var resultCollection = analyzeActionOperation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + var recognizeCustomEntitiesActionResult = resultCollection.RecognizeCustomEntitiesResults; + var actionResult = recognizeCustomEntitiesActionResult.First(); + return actionResult.DocumentsResults; + } + + private void ValidateInDocumentResult(CategorizedEntityCollection entities, List minimumExpectedOutput) + { + Assert.IsNotNull(entities.Warnings); + Assert.GreaterOrEqual(entities.Count, minimumExpectedOutput.Count); + foreach (CategorizedEntity entity in entities) + { + Assert.That(entity.Text, Is.Not.Null.And.Not.Empty); + Assert.IsTrue(minimumExpectedOutput.Contains(entity.Text, StringComparer.OrdinalIgnoreCase)); + Assert.IsNotNull(entity.Category); + Assert.GreaterOrEqual(entity.ConfidenceScore, 0.0); + Assert.GreaterOrEqual(entity.Offset, 0); + Assert.Greater(entity.Length, 0); + + if (entity.SubCategory != null) + { + Assert.IsNotEmpty(entity.SubCategory); + } + } + } + + private void ValidateBatchDocumentsResult(RecognizeCustomEntitiesResultCollection results, Dictionary> minimumExpectedOutput, bool includeStatistics = default) + { + 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 (RecognizeEntitiesResult entitiesInDocument in results) + { + Assert.That(entitiesInDocument.Id, Is.Not.Null.And.Not.Empty); + + Assert.False(entitiesInDocument.HasError); + + //Even though statistics are not asked for, TA 5.0.0 shipped with Statistics default always present. + Assert.IsNotNull(entitiesInDocument.Statistics); + + if (includeStatistics) + { + Assert.GreaterOrEqual(entitiesInDocument.Statistics.CharacterCount, 0); + Assert.Greater(entitiesInDocument.Statistics.TransactionCount, 0); + } + else + { + Assert.AreEqual(0, entitiesInDocument.Statistics.CharacterCount); + Assert.AreEqual(0, entitiesInDocument.Statistics.TransactionCount); + } + + ValidateInDocumentResult(entitiesInDocument.Entities, minimumExpectedOutput[entitiesInDocument.Id]); + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs index 84cd1e6db0c1..b54fd4331ed3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs @@ -239,6 +239,42 @@ public async Task RecognizeEntitiesBatchWithNullTextTest() Assert.AreEqual(exceptionMessage, ex.Message); } + [RecordedTest] + public async Task RecognizeEntitiesWithMultipleActions() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeEntitiesActions = new List() + { + new RecognizeEntitiesAction() + { + DisableServiceLogs = true, + ActionName = "RecognizeEntitiesWithDisabledServiceLogs" + }, + new RecognizeEntitiesAction() + { + ActionName = "RecognizeEntities" + } + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_batchDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection RecognizeEntitiesActionsResults = resultCollection.RecognizeEntitiesResults; + + Assert.IsNotNull(RecognizeEntitiesActionsResults); + + IList expected = new List { "RecognizeEntities", "RecognizeEntitiesWithDisabledServiceLogs" }; + CollectionAssert.AreEquivalent(expected, RecognizeEntitiesActionsResults.Select(result => result.ActionName)); + } + private void ValidateInDocumenResult(CategorizedEntityCollection entities, List minimumExpectedOutput) { Assert.IsNotNull(entities.Warnings); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs index 6999f0d180eb..1ef8ac03ba38 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs @@ -215,6 +215,42 @@ public async Task RecognizeLinkedEntitiesBatchWithNullTextTest() Assert.AreEqual(exceptionMessage, ex.Message); } + [RecordedTest] + public async Task RecognizeLinkedEntitiesWithMultipleActions() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeLinkedEntitiesActions = new List() + { + new RecognizeLinkedEntitiesAction() + { + DisableServiceLogs = true, + ActionName = "RecognizeLinkedEntitiesWithDisabledServiceLogs" + }, + new RecognizeLinkedEntitiesAction() + { + ActionName = "RecognizeLinkedEntities" + } + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_batchDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection RecognizeLinkedEntitiesActionsResults = resultCollection.RecognizeLinkedEntitiesResults; + + Assert.IsNotNull(RecognizeLinkedEntitiesActionsResults); + + IList expected = new List { "RecognizeLinkedEntities", "RecognizeLinkedEntitiesWithDisabledServiceLogs" }; + CollectionAssert.AreEquivalent(expected, RecognizeLinkedEntitiesActionsResults.Select(result => result.ActionName)); + } + private void ValidateInDocumenResult(LinkedEntityCollection entities, List minimumExpectedOutput) { Assert.IsNotNull(entities.Warnings); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs index c0a9c22a0b74..7622fe5c2bc9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs @@ -237,6 +237,42 @@ public async Task RecognizePiiEntitiesBatchWitCategoryTest() ValidateBatchDocumentsResult(results, expectedOutput); } + [RecordedTest] + public async Task RecognizePiiEntitiesWithMultipleActions() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizePiiEntitiesActions = new List() + { + new RecognizePiiEntitiesAction() + { + DisableServiceLogs = true, + ActionName = "RecognizePiiEntitiesWithDisabledServiceLogs" + }, + new RecognizePiiEntitiesAction() + { + ActionName = "RecognizePiiEntities" + } + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(s_batchDocuments, batchActions); + + await operation.WaitForCompletionAsync(); + + // Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection RecognizePiiEntitiesActionsResults = resultCollection.RecognizePiiEntitiesResults; + + Assert.IsNotNull(RecognizePiiEntitiesActionsResults); + + IList expected = new List { "RecognizePiiEntities", "RecognizePiiEntitiesWithDisabledServiceLogs" }; + CollectionAssert.AreEquivalent(expected, RecognizePiiEntitiesActionsResults.Select(result => result.ActionName)); + } + private void ValidateInDocumenResult(PiiEntityCollection entities, List minimumExpectedOutput) { Assert.IsNotNull(entities.Warnings); 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..c7b5db854c1a 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-b17650d343cc8742b3c5409c5889b084-c82ea0a0b8868c4c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "782379accaf823684ab3ddba1b6d3561", "x-ms-return-client-request-id": "true" }, @@ -72,45 +78,50 @@ }, "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": "f0f6d54a-0d09-402c-be45-ee510536d52d", + "Date": "Mon, 25 Oct 2021 21:02:27 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1012" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "489" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "fadd7949-9686-4237-a5de-0456d05f122d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:41 GMT", + "Date": "Mon, 25 Oct 2021 21:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "116" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:27Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "notStarted", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -120,34 +131,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "382882b3-cf7a-4321-8611-2a577c3bc69e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:43 GMT", + "Date": "Mon, 25 Oct 2021 21:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "88" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:28Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -157,34 +173,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "0d9e9bf6-5878-449d-a8b5-2181969101b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:44 GMT", + "Date": "Mon, 25 Oct 2021 21:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:28Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -194,34 +215,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "181d6bf3-ecbc-4a2e-8725-6a6be7877df0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:45 GMT", + "Date": "Mon, 25 Oct 2021 21:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { - "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:28Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -231,34 +257,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "7aecb9eb-9278-4f78-afdb-48ce18806553", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:46 GMT", + "Date": "Mon, 25 Oct 2021 21:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:28Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -268,34 +299,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "c3219235-e327-4b10-85ce-988c44052bcb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:47 GMT", + "Date": "Mon, 25 Oct 2021 21:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:34Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -305,226 +341,131 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "349e0b4b-39dc-4482-9aa2-0310aaab9c4d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:48 GMT", + "Date": "Mon, 25 Oct 2021 21:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "407" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:34Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { - "completed": 2, + "completed": 0, "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" - } - } - ] + "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", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "19d41008-7955-415c-bf40-4c60ec8b4e2e", + "apim-request-id": "297c9a9f-3015-4b8b-9878-1867ccb910a3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:02: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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:34Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 5, + "total": 5 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "8591c3eb-b3f5-4b87-8ecd-fd8813c44a56", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:49 GMT", + "Date": "Mon, 25 Oct 2021 21:02:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "207" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:37Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 3, + "inProgress": 4, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:02:37.5599819Z", "state": "succeeded", "results": { "documents": [ @@ -596,118 +537,52 @@ "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", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "03d8337b-b8a4-4d3d-9e12-6384d7c8872e", + "apim-request-id": "d3ce7e30-67b3-4ef9-bc04-5db2417348ab", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:40:50 GMT", + "Date": "Mon, 25 Oct 2021 21:02:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "258" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:37Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 3, + "inProgress": 4, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:02:37.5599819Z", "state": "succeeded", "results": { "documents": [ @@ -779,2332 +654,56 @@ "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": "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", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": [ + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f4a964bd-5188-4f60-b75f-8089b7535574", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:02:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "241" + }, + "ResponseBody": { + "jobId": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:37Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:02:37.5599819Z", "state": "succeeded", "results": { "documents": [ { - "redactedText": "********* is the *** of ****** and *****.", "id": "0", "entities": [ { @@ -3112,34 +711,33 @@ "category": "Person", "offset": 0, "length": 9, - "confidenceScore": 0.99 + "confidenceScore": 1.0 }, { "text": "CEO", "category": "PersonType", "offset": 17, "length": 3, - "confidenceScore": 0.96 + "confidenceScore": 0.95 }, { "text": "SpaceX", "category": "Organization", "offset": 24, "length": 6, - "confidenceScore": 0.98 + "confidenceScore": 0.99 }, { "text": "Tesla", "category": "Organization", "offset": 35, "length": 5, - "confidenceScore": 0.98 + "confidenceScore": 0.99 } ], "warnings": [] }, { - "redactedText": "***** stock is up by 400% *********.", "id": "1", "entities": [ { @@ -3147,7 +745,15 @@ "category": "Organization", "offset": 0, "length": 5, - "confidenceScore": 0.95 + "confidenceScore": 0.98 + }, + { + "text": "400%", + "category": "Quantity", + "subcategory": "Percentage", + "offset": 21, + "length": 4, + "confidenceScore": 0.8 }, { "text": "this year", @@ -3162,36 +768,6 @@ } ], "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" } } @@ -3200,34 +776,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "47d20640de90239aa708c6ff8dbbf4a0", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "6814be06-2614-4766-8ba2-4ba35c7d9f09", + "apim-request-id": "1c1a7432-9b3f-4a83-abbf-b50a08b92c4c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:07 GMT", + "Date": "Mon, 25 Oct 2021 21:02:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "316" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "236" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:42Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 3, "failed": 0, @@ -3235,8 +816,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:02:37.5599819Z", "state": "succeeded", "results": { "documents": [ @@ -3311,8 +891,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:02:41.2945412Z", "state": "succeeded", "results": { "documents": [ @@ -3379,33 +958,61 @@ } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:02:42.4601302Z", "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" } } ] @@ -3413,34 +1020,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1cb76c6b43fc8b8f2d0793e71fe36c7f", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "1341b4be-1c29-42f3-8e43-c1afb7b2c710", + "apim-request-id": "323d0285-8cde-4451-8539-0154a838f087", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:08 GMT", + "Date": "Mon, 25 Oct 2021 21:02:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "160" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1517" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:42Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 3, "failed": 0, @@ -3448,8 +1060,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:02:37.5599819Z", "state": "succeeded", "results": { "documents": [ @@ -3524,8 +1135,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:02:41.2945412Z", "state": "succeeded", "results": { "documents": [ @@ -3592,33 +1202,61 @@ } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:02:42.4601302Z", "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" } } ] @@ -3626,34 +1264,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f43211cf164692c54edab07d2ac18e0f", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "f88ccf9e-dee6-46b3-8a36-f857b57cec1c", + "apim-request-id": "1e7cf76b-b3a6-4b90-b2ac-d6804746ffbd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:10 GMT", + "Date": "Mon, 25 Oct 2021 21:02:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "356" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:42Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 3, "failed": 0, @@ -3661,8 +1304,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:02:37.5599819Z", "state": "succeeded", "results": { "documents": [ @@ -3737,8 +1379,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:02:41.2945412Z", "state": "succeeded", "results": { "documents": [ @@ -3805,33 +1446,61 @@ } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:02:42.4601302Z", "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,34 +1508,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "4a38ff0e-f533-46a0-a22c-a0275de24dad", + "apim-request-id": "ec6da102-9cf2-4161-9f03-e534621a08ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:11 GMT", + "Date": "Mon, 25 Oct 2021 21:02:56 GMT", "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": "7991" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:42Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 3, "failed": 0, @@ -3874,8 +1548,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:02:37.5599819Z", "state": "succeeded", "results": { "documents": [ @@ -3950,8 +1623,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:02:41.2945412Z", "state": "succeeded", "results": { "documents": [ @@ -4018,33 +1690,61 @@ } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:02:42.4601302Z", "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,34 +1752,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/6e8285a3-8cbe-4cd1-b15a-63a90ac197ab", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8ef0011-2e7c-421e-8558-cadcde63f546", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "4515d3fe-e6df-4402-90a5-eb43c8519b28", + "apim-request-id": "31bebfb2-2cb0-41c2-9924-18421cba9d0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:12 GMT", + "Date": "Mon, 25 Oct 2021 21:02:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "295" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "251" }, "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": "c8ef0011-2e7c-421e-8558-cadcde63f546", + "lastUpdateDateTime": "2021-10-25T21:02:58Z", + "createdDateTime": "2021-10-25T21:02:27Z", + "expirationDateTime": "2021-10-26T21:02:27Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 5, "failed": 0, @@ -4087,8 +1792,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6643633Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:02:37.5599819Z", "state": "succeeded", "results": { "documents": [ @@ -4163,8 +1867,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:12.2905091Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:02:58.0421731Z", "state": "succeeded", "results": { "documents": [ @@ -4252,8 +1955,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:40:48.6530071Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:02:41.2945412Z", "state": "succeeded", "results": { "documents": [ @@ -4322,8 +2024,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:00.581675Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:02:53.8966586Z", "state": "succeeded", "results": { "documents": [ @@ -4352,8 +2053,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:11.8663011Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:02:42.4601302Z", "state": "succeeded", "results": { "documents": [ @@ -4416,6 +2116,6 @@ "Variables": { "RandomSeed": "1881715126", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..11bb280958c7 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-e895acb3eaece244b1bef931049e8f57-aef72f5293ab3546-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "cab6db40209658f86d8910a806e31bf5", "x-ms-return-client-request-id": "true" }, @@ -72,45 +78,50 @@ }, "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": "aea21175-cd53-4db9-ac97-98dd61eead75", + "Date": "Mon, 25 Oct 2021 21:05:40 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "446" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "604" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "78864347-de1c-4474-b400-0c56bdec53b9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:08 GMT", + "Date": "Mon, 25 Oct 2021 21:05:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "d32a3cd3-f43e-4b52-8e44-67d25bc5885d", - "lastUpdateDateTime": "2021-08-06T01:45:09Z", - "createdDateTime": "2021-08-06T01:45:08Z", - "expirationDateTime": "2021-08-07T01:45:08Z", + "jobId": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:40Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -120,219 +131,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45: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": "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", + "apim-request-id": "b4422a16-5bdc-4829-9b83-2d19f57b5af6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:14 GMT", + "Date": "Mon, 25 Oct 2021 21:05: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": "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:40Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -342,34 +173,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "d6686b44-ef90-4a9e-a91c-a6c3f8c2066e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:16 GMT", + "Date": "Mon, 25 Oct 2021 21:05:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "114" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:43Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 2, "failed": 0, @@ -377,8 +213,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -453,8 +288,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -525,43 +359,47 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ed4c3684c462a5fd9492749f41a10d64", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "1b9907b7-6c34-4e78-80a3-32c442096c4d", + "apim-request-id": "2502f5a3-8527-44ea-afeb-166dd722c241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:18 GMT", + "Date": "Mon, 25 Oct 2021 21:05:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "171" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "307" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:43Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { - "completed": 3, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 3, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -634,99 +472,9 @@ } } ], - "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", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -797,43 +545,47 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4c6850f8ec78d598ac2fff83312a219d", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "45f1330b-a0b6-4cd8-b9c7-7de1c729a9a2", + "apim-request-id": "5828cac2-276e-4efd-bf9e-09de59124e4a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:19 GMT", + "Date": "Mon, 25 Oct 2021 21:05:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "169" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "174" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:46Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { - "completed": 3, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 3, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -906,112 +658,22 @@ } } ], - "entityLinkingTasks": [ + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ { + "redactedText": "********* is the *** of ****** and *****.", "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": "Elon Musk", + "category": "Person", + "offset": 0, + "length": 9, + "confidenceScore": 0.99 }, { "text": "CEO", @@ -1069,43 +731,47 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ddcaf4b04d1d3c43fbe934fd3598689f", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "27de3cc9-5f2d-47fc-8139-e68f1cadbbd3", + "apim-request-id": "31a9ae4e-5b78-4952-97ea-0800b0a30b22", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:20 GMT", + "Date": "Mon, 25 Oct 2021 21:05:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "168" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "119" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:46Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { - "completed": 3, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 3, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -1178,99 +844,9 @@ } } ], - "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", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -1341,43 +917,47 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "90e61d7b6a5298e39e764032c4797369", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "3b9b0cd2-5658-4bda-aab7-eeee76b765b5", + "apim-request-id": "5acba0d3-98ed-4953-b0af-3cf33276eb6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:21 GMT", + "Date": "Mon, 25 Oct 2021 21:05:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "148" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "123" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:46Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { - "completed": 3, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 3, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -1450,99 +1030,9 @@ } } ], - "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", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -1613,43 +1103,47 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4ceed6702fd7aa470c2c508fb79aa013", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "b62ceba0-3fa7-4cd3-8d83-fa768fde881f", + "apim-request-id": "e49a2a08-b28f-4cdc-af25-0befd6bba9fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:22 GMT", + "Date": "Mon, 25 Oct 2021 21:05:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "168" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "115" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:46Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { - "completed": 3, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 3, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -1702,9115 +1196,16 @@ "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" + "length": 4, + "confidenceScore": 0.8 + }, + { + "text": "this year", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 26, + "length": 9, + "confidenceScore": 0.8 } ], "warnings": [] @@ -10823,8 +1218,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -10890,98 +1284,44 @@ "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ba6a68f9babe7495bd1f3cc4a46dd9b8", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "d5488ad4-dbf1-4307-8437-30b8fdd3919f", + "apim-request-id": "84823b8c-e0f1-4729-b99a-8924f12dc040", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:01 GMT", + "Date": "Mon, 25 Oct 2021 21:05:53 GMT", "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": "263" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:53Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 4, "failed": 0, @@ -10989,8 +1329,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -11065,8 +1404,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -11154,8 +1492,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -11222,62 +1559,32 @@ } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "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." - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "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." - } + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -11285,34 +1592,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b750013be839973726d03ef0127157e7", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "1af09f8d-8817-4e01-8376-8adb1fee851d", + "apim-request-id": "98d43f9a-b704-4dbd-bbc2-76258ab3af1f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:02 GMT", + "Date": "Mon, 25 Oct 2021 21:05:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "265" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "725" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:53Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 4, "failed": 0, @@ -11320,8 +1632,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -11396,8 +1707,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -11485,8 +1795,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -11553,62 +1862,32 @@ } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "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." - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "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." - } + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -11616,34 +1895,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9f55af848b19cddbafe39c41ba4d0f42", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "6bb51a7d-cf8c-4375-b151-06fcbe917d96", + "apim-request-id": "da6a6529-4358-4ddb-9862-412711133904", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:04 GMT", + "Date": "Mon, 25 Oct 2021 21:05:57 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": "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:53Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 4, "failed": 0, @@ -11651,8 +1935,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -11727,8 +2010,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -11816,8 +2098,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -11884,62 +2165,32 @@ } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "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." - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "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." - } + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -11947,34 +2198,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9cf98c1de6d0107030d293ee7ca4614b", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "f3fea479-1cfd-48d2-8b84-abf1566163d7", + "apim-request-id": "3b9938dd-e8a7-4abd-8e2f-0aae3dc33207", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:05 GMT", + "Date": "Mon, 25 Oct 2021 21:05:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "240" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "312" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:53Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 4, "failed": 0, @@ -11982,8 +2238,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -12058,8 +2313,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -12147,8 +2401,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -12215,62 +2468,32 @@ } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "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." - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "Tesla" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -12278,34 +2501,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f53f55c83a18af9f268308564cf6ddd8", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "d72457db-a8b2-4ced-bb2f-f3df010befb4", + "apim-request-id": "f2465131-6735-4b2d-9b6e-f2fab5f1bdf2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:06 GMT", + "Date": "Mon, 25 Oct 2021 21:06:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "209" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "234" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:53Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 4, "failed": 0, @@ -12313,8 +2541,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -12389,8 +2616,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -12478,8 +2704,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -12546,62 +2771,32 @@ } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "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." - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "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." - } + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -12609,34 +2804,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "86d3fcc0bb779e173e446e46f8ed510a", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "a28cf02f-0e82-4dd4-a776-70263a2362ab", + "apim-request-id": "3929d088-6400-4a65-be72-d27bae7c53b7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:08 GMT", + "Date": "Mon, 25 Oct 2021 21:06:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "223" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "351" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:53Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 4, "failed": 0, @@ -12644,8 +2844,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -12720,8 +2919,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -12809,8 +3007,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -12877,62 +3074,32 @@ } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "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." - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "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." - } + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -12940,34 +3107,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "712ed841-540c-4779-9e43-598f11e23e37", + "apim-request-id": "3920b053-1497-4020-8324-57bce6a17c82", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:09 GMT", + "Date": "Mon, 25 Oct 2021 21:06:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "228" + "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", + "jobId": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:53Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 4, "failed": 0, @@ -12975,8 +3147,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -13051,8 +3222,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -13140,8 +3310,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -13208,62 +3377,32 @@ } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "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." - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "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." - } + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -13271,34 +3410,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "ca042780-8c25-4215-bf49-b9eb328ba257", + "apim-request-id": "f5a67637-2e9a-4e46-bbc5-0597fe75b837", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:10 GMT", + "Date": "Mon, 25 Oct 2021 21:06:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "239" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "254" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:53Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 4, "failed": 0, @@ -13306,8 +3450,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -13382,8 +3525,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -13471,8 +3613,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -13539,62 +3680,32 @@ } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "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." - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "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." - } + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -13602,34 +3713,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "ee891302-22a7-4d30-a008-19f70b0c3d4b", + "apim-request-id": "e3410199-fa2d-441a-8fc4-2da1973c7842", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:11 GMT", + "Date": "Mon, 25 Oct 2021 21:06:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "227" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5461" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:05:53Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 4, "failed": 0, @@ -13637,8 +3753,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -13713,8 +3828,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -13802,8 +3916,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -13870,62 +3983,32 @@ } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "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." - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "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." - } + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -13933,34 +4016,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d32a3cd3-f43e-4b52-8e44-67d25bc5885d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f7dded68-afe6-4a4d-8137-2d1769b2c2ff", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "8a994d78-aa46-4f50-89af-1063fad3e3a3", + "apim-request-id": "40449f0a-edd4-41fa-9318-258aafe51e00", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:13 GMT", + "Date": "Mon, 25 Oct 2021 21:06:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "272" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "400" }, "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": "f7dded68-afe6-4a4d-8137-2d1769b2c2ff", + "lastUpdateDateTime": "2021-10-25T21:06:12Z", + "createdDateTime": "2021-10-25T21:05:39Z", + "expirationDateTime": "2021-10-26T21:05:39Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 5, "failed": 0, @@ -13968,8 +4056,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.1974232Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:05:42.4358072Z", "state": "succeeded", "results": { "documents": [ @@ -14044,8 +4131,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.8330526Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:05:52.5953168Z", "state": "succeeded", "results": { "documents": [ @@ -14133,8 +4219,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:16.0319786Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:43.2579704Z", "state": "succeeded", "results": { "documents": [ @@ -14203,8 +4288,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:46:13.4130187Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:05:53.7823098Z", "state": "succeeded", "results": { "documents": [ @@ -14233,8 +4317,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:33.9896772Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:06:12.4650464Z", "state": "succeeded", "results": { "documents": [ @@ -14297,6 +4380,6 @@ "Variables": { "RandomSeed": "1499041820", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..6d1baf935030 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-b157eecab9155d4a9d722225c52d111c-a4ad3ada562bc047-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "aeed755eebf15dfbf87891ec623be508", "x-ms-return-client-request-id": "true" }, @@ -37,43 +43,49 @@ }, "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": "66c89bad-0eae-4f7d-97ed-3b5e41594cf9", + "Date": "Mon, 25 Oct 2021 21:02:59 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "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": "163" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "fd4a6aa3-7ac7-42d2-8f0f-3d1c6523f18a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:13 GMT", + "Date": "Mon, 25 Oct 2021 21:02:59 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": "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": "notStarted", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { @@ -85,31 +97,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "124d51b0-119c-4c5a-8065-47c50d95888f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:14 GMT", + "Date": "Mon, 25 Oct 2021 21:03:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "27" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -122,31 +140,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "d02c15ab-4396-444c-bc24-89287ec3a77f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:15 GMT", + "Date": "Mon, 25 Oct 2021 21:03:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -159,31 +183,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "e3ae680f-ae5a-4e20-96aa-9415ff3582ef", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:16 GMT", + "Date": "Mon, 25 Oct 2021 21:03:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -196,31 +226,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "443e9354-15c6-45dc-88a9-2fa75d763cf6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:17 GMT", + "Date": "Mon, 25 Oct 2021 21:03:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -233,31 +269,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "3686091e-06e2-4f9e-b4bc-aef56428bc0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:18 GMT", + "Date": "Mon, 25 Oct 2021 21:03:06 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": "16" }, "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -270,31 +312,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "e80dcbd5-0b84-46f7-8096-3c1c997dc028", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:19 GMT", + "Date": "Mon, 25 Oct 2021 21:03:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -307,31 +355,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "39c45ded-7318-43de-8c55-4e045134cc45", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:20 GMT", + "Date": "Mon, 25 Oct 2021 21:03:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -344,31 +398,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "b0a409f4-4da8-4565-b7b1-e9f8124a8865", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:21 GMT", + "Date": "Mon, 25 Oct 2021 21:03:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -381,31 +441,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "c0cefe53-ce54-4d60-b01c-aa0372332346", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:22 GMT", + "Date": "Mon, 25 Oct 2021 21:03:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -418,31 +484,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "c89d3ae0-c806-49f3-be1e-dfcec4a35fe6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:23 GMT", + "Date": "Mon, 25 Oct 2021 21:03:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-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", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -455,31 +527,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "3dc03b26-dd6c-40d3-adbe-1676e3234493", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:24 GMT", + "Date": "Mon, 25 Oct 2021 21:03:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -492,31 +570,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "fdafa2c2-2ed6-4471-ba25-e6bcdf5fbcef", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:25 GMT", + "Date": "Mon, 25 Oct 2021 21:03:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -529,31 +613,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "26efce3d-31ce-489b-aa30-7c977eb19a15", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:26 GMT", + "Date": "Mon, 25 Oct 2021 21:03:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -566,31 +656,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "eeb0af8c-1be2-40b1-89e7-9f606cef6155", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:27 GMT", + "Date": "Mon, 25 Oct 2021 21:03:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" + "X-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", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -603,31 +699,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "9f58a0dc-3f8f-4baf-a312-cbe0f0e6fc97", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:28 GMT", + "Date": "Mon, 25 Oct 2021 21:03:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -640,31 +742,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "1ec7bfce-7a0a-47ba-842e-ef75128cceb7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:29 GMT", + "Date": "Mon, 25 Oct 2021 21:03:20 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": "fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", - "lastUpdateDateTime": "2021-08-06T01:41:13Z", - "createdDateTime": "2021-08-06T01:41:13Z", - "expirationDateTime": "2021-08-07T01:41:13Z", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -677,31 +785,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "e67024a4-37f4-4436-b72e-8ee2c66bd94b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:30 GMT", + "Date": "Mon, 25 Oct 2021 21:03:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -714,31 +828,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "5a850931-92fc-4d8b-8e54-47843b4ba438", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:31 GMT", + "Date": "Mon, 25 Oct 2021 21:03:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -751,290 +871,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "b0c19557-9b1a-4d4a-b38d-ce307a5914dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:34 GMT", + "Date": "Mon, 25 Oct 2021 21:03: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": "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-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", + "jobId": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:02:59Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -1047,105 +914,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/fd1842bf-32f7-4f54-acc5-8d2b3d421bbd", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ca5c9c48-b73d-4447-9a77-88de15972329", "RequestMethod": "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 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", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "27d3602c-1ba1-4b9b-8d9c-e0459f243714", + "apim-request-id": "016975f4-cf20-471a-b950-240cfb3ba8eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:44 GMT", + "Date": "Mon, 25 Oct 2021 21:03:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "58" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" }, "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": "ca5c9c48-b73d-4447-9a77-88de15972329", + "lastUpdateDateTime": "2021-10-25T21:03:24Z", + "createdDateTime": "2021-10-25T21:02:59Z", + "expirationDateTime": "2021-10-26T21:02:59Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -1156,8 +955,7 @@ "total": 1, "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:43.7346716Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:03:24.3288394Z", "state": "succeeded", "results": { "documents": [ @@ -1301,6 +1099,6 @@ "Variables": { "RandomSeed": "1819362252", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..a2858f208634 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-cf41d1d32cc44f46b6511f59c949a6dc-312e8c91dc8d9845-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "b6927c132680ad8649ac90e19e28d853", "x-ms-return-client-request-id": "true" }, @@ -37,43 +43,49 @@ }, "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": "7af4a17b-dd70-4f1e-afa7-c9e8e0b4d057", + "Date": "Mon, 25 Oct 2021 21:06:17 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "251" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "e4d6eae8-424e-41cd-b77f-85759d24b592", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:13 GMT", + "Date": "Mon, 25 Oct 2021 21:06:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "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", - "status": "notStarted", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { @@ -85,31 +97,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "1d113e78-d743-40d2-982d-a9b350fbd4cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:14 GMT", + "Date": "Mon, 25 Oct 2021 21:06:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" }, "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -122,31 +140,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "03e6d9b9-716f-43d0-b1db-badeb693101e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:15 GMT", + "Date": "Mon, 25 Oct 2021 21:06:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { - "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -159,31 +183,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "230e253a-1ad2-473a-a381-6376c9efc6c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:16 GMT", + "Date": "Mon, 25 Oct 2021 21:06:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -196,31 +226,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "82ec6484-a8d2-4d6e-b28e-f05c2ae2f582", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:17 GMT", + "Date": "Mon, 25 Oct 2021 21:06:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -233,31 +269,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "a828f2fe-0166-4f94-88c7-c7758b66f6e1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:18 GMT", + "Date": "Mon, 25 Oct 2021 21:06: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-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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -270,31 +312,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "75525fbf-2ee4-4782-9a32-ce478823d1b9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:19 GMT", + "Date": "Mon, 25 Oct 2021 21:06:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -307,31 +355,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "6dd4240d-e98d-4171-8611-4c77bc7464e9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:20 GMT", + "Date": "Mon, 25 Oct 2021 21:06:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" }, "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -344,31 +398,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "9563d96b-c726-4cc5-b28b-4f343449a68e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:22 GMT", + "Date": "Mon, 25 Oct 2021 21:06:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -381,31 +441,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "33c9e497-2e9f-4cb8-9cf3-6a7447ae9e06", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:23 GMT", + "Date": "Mon, 25 Oct 2021 21:06:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-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", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -418,31 +484,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "0ba29bb2-22c8-4cd6-a9cc-90e1bcb33955", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:25 GMT", + "Date": "Mon, 25 Oct 2021 21:06:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -455,31 +527,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "baa2d899-c66e-42f3-9230-c2f25632e374", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:26 GMT", + "Date": "Mon, 25 Oct 2021 21:06:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -492,31 +570,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "c301948e-617c-447b-8a71-776705854e57", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:27 GMT", + "Date": "Mon, 25 Oct 2021 21:06: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": "65" }, "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -529,31 +613,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "cc644c6f-7797-4797-a7a2-84d493212fa3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:28 GMT", + "Date": "Mon, 25 Oct 2021 21:06:36 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -566,31 +656,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "ea71f306-2a72-4e46-a578-e57bc01fd8af", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:29 GMT", + "Date": "Mon, 25 Oct 2021 21:06: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": "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -603,31 +699,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "d0a655ca-c736-4d91-b800-f3a36be927ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:30 GMT", + "Date": "Mon, 25 Oct 2021 21:06:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -640,31 +742,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "cace7fc3-48dc-4bb4-a3e6-94c9403dc9ef", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:31 GMT", + "Date": "Mon, 25 Oct 2021 21:06:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -677,31 +785,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "b3e2f33f-3089-410b-99e0-f978d71ae490", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:32 GMT", + "Date": "Mon, 25 Oct 2021 21:06:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -714,31 +828,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "83e18349-435c-45ee-a980-01f91eb9bc43", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:33 GMT", + "Date": "Mon, 25 Oct 2021 21:06: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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -751,31 +871,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "c8169ed4-8d36-4120-9795-019e3393995c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:34 GMT", + "Date": "Mon, 25 Oct 2021 21:06:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -788,31 +914,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "a3e326f4-c622-488f-b9d8-364a4ce4b5a6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:35 GMT", + "Date": "Mon, 25 Oct 2021 21:06:46 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -825,327 +957,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "211d7cbe-04ea-46c7-acff-9082af1cae9e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:46:44 GMT", + "Date": "Mon, 25 Oct 2021 21:06:48 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": "061fc7ce-9c0d-4592-a6e7-eee88ba224d8", - "lastUpdateDateTime": "2021-08-06T01:46:15Z", - "createdDateTime": "2021-08-06T01:46:14Z", - "expirationDateTime": "2021-08-07T01:46:14Z", + "jobId": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:18Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -1158,1622 +1000,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/061fc7ce-9c0d-4592-a6e7-eee88ba224d8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/facdfec8-5674-4214-8a21-649b6fb574bc", "RequestMethod": "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 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", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "c1ffb2df-3d43-462d-a3c5-dcca5cda4614", + "apim-request-id": "9e346043-7c40-4448-9d9c-61aaa47485d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:30 GMT", + "Date": "Mon, 25 Oct 2021 21:06:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "131" }, "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": "facdfec8-5674-4214-8a21-649b6fb574bc", + "lastUpdateDateTime": "2021-10-25T21:06:50Z", + "createdDateTime": "2021-10-25T21:06:17Z", + "expirationDateTime": "2021-10-26T21:06:17Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", @@ -2784,8 +1041,7 @@ "total": 1, "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:47:30.5651453Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:06:50.2473937Z", "state": "succeeded", "results": { "documents": [ @@ -2929,6 +1185,6 @@ "Variables": { "RandomSeed": "333490656", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json index bab92ad11269..36b97b11b5cc 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-66584e5a66567e42b22c35e9065e7044-53a7589422512648-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "bc10ae4f3809e9b40d4f6b783fc973c7", "x-ms-return-client-request-id": "true" }, @@ -38,45 +44,50 @@ }, "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": "7e7ed2b6-75c4-41b4-b726-449a3f21d2ee", + "Date": "Mon, 25 Oct 2021 21:03:25 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9ff3bb42-8763-445f-8288-55213f793a6a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "246" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "221" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9ff3bb42-8763-445f-8288-55213f793a6a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "0c4a62c5-4636-4a77-9e38-d34fc8f45b38", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:44 GMT", + "Date": "Mon, 25 Oct 2021 21:03:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "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": "9ff3bb42-8763-445f-8288-55213f793a6a", + "lastUpdateDateTime": "2021-10-25T21:03:26Z", + "createdDateTime": "2021-10-25T21:03:26Z", + "expirationDateTime": "2021-10-26T21:03:26Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -86,34 +97,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9ff3bb42-8763-445f-8288-55213f793a6a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "1b9ac4ab-b2ae-4d4b-b968-36114a750e82", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:45 GMT", + "Date": "Mon, 25 Oct 2021 21:03:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "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": "9ff3bb42-8763-445f-8288-55213f793a6a", + "lastUpdateDateTime": "2021-10-25T21:03:26Z", + "createdDateTime": "2021-10-25T21:03:26Z", + "expirationDateTime": "2021-10-26T21:03:26Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -123,34 +139,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9ff3bb42-8763-445f-8288-55213f793a6a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "efdf4885-8800-4822-8dd4-b1696e4ac276", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:46 GMT", + "Date": "Mon, 25 Oct 2021 21:03:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", - "lastUpdateDateTime": "2021-08-06T01:41:45Z", - "createdDateTime": "2021-08-06T01:41:44Z", - "expirationDateTime": "2021-08-07T01:41:44Z", + "jobId": "9ff3bb42-8763-445f-8288-55213f793a6a", + "lastUpdateDateTime": "2021-10-25T21:03:26Z", + "createdDateTime": "2021-10-25T21:03:26Z", + "expirationDateTime": "2021-10-26T21:03:26Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -160,34 +181,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9ff3bb42-8763-445f-8288-55213f793a6a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "d11cae18-b5c1-43e6-8abc-b9370c88b418", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:47 GMT", + "Date": "Mon, 25 Oct 2021 21:03: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "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": "9ff3bb42-8763-445f-8288-55213f793a6a", + "lastUpdateDateTime": "2021-10-25T21:03:26Z", + "createdDateTime": "2021-10-25T21:03:26Z", + "expirationDateTime": "2021-10-26T21:03:26Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -197,34 +223,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9ff3bb42-8763-445f-8288-55213f793a6a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "26ecd374-0431-45e4-9ee6-c03cde7fd3f5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:48 GMT", + "Date": "Mon, 25 Oct 2021 21:03:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "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": "9ff3bb42-8763-445f-8288-55213f793a6a", + "lastUpdateDateTime": "2021-10-25T21:03:26Z", + "createdDateTime": "2021-10-25T21:03:26Z", + "expirationDateTime": "2021-10-26T21:03:26Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -234,34 +265,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9ff3bb42-8763-445f-8288-55213f793a6a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "371604f0-3dfc-4149-9c7c-dbe0d843752d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:49 GMT", + "Date": "Mon, 25 Oct 2021 21:03:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "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": "9ff3bb42-8763-445f-8288-55213f793a6a", + "lastUpdateDateTime": "2021-10-25T21:03:26Z", + "createdDateTime": "2021-10-25T21:03:26Z", + "expirationDateTime": "2021-10-26T21:03:26Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -271,34 +307,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9ff3bb42-8763-445f-8288-55213f793a6a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "d4ef1cd9-f2bc-43eb-ab42-3580076840cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:50 GMT", + "Date": "Mon, 25 Oct 2021 21:03:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "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": "9ff3bb42-8763-445f-8288-55213f793a6a", + "lastUpdateDateTime": "2021-10-25T21:03:26Z", + "createdDateTime": "2021-10-25T21:03:26Z", + "expirationDateTime": "2021-10-26T21:03:26Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -308,34 +349,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3ef2a6cf-8235-4b7b-b16a-1bf30c8cc060", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9ff3bb42-8763-445f-8288-55213f793a6a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "d0917005-79cd-4bcc-9f8c-15bb4c22a78f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:52 GMT", + "Date": "Mon, 25 Oct 2021 21:03:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1423" }, "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": "9ff3bb42-8763-445f-8288-55213f793a6a", + "lastUpdateDateTime": "2021-10-25T21:03:34Z", + "createdDateTime": "2021-10-25T21:03:26Z", + "expirationDateTime": "2021-10-26T21:03:26Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -343,8 +389,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:41:51.4619861Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:03:34.6774823Z", "state": "succeeded", "results": { "documents": [ @@ -378,6 +423,6 @@ "Variables": { "RandomSeed": "1233550557", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json index b1ef1d9f8e56..595016da16b1 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-8c8909596499bb42bd7b7df3a799f3a1-36954ded821cb741-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "f64d021068f23b47239dc64d32ac0d55", "x-ms-return-client-request-id": "true" }, @@ -38,45 +44,50 @@ }, "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": "03e83626-f792-4e08-8be7-987fbec819ec", + "Date": "Mon, 25 Oct 2021 21:06:55 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "195" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "287" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "bad44bb4-23f3-4572-8718-0a28586c4d99", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:31 GMT", + "Date": "Mon, 25 Oct 2021 21:06:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "730" + "X-Content-Type-Options": "nosniff", + "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": "c29ea39b-9a5c-4672-93ee-6f209851c52a", + "lastUpdateDateTime": "2021-10-25T21:06:56Z", + "createdDateTime": "2021-10-25T21:06:55Z", + "expirationDateTime": "2021-10-26T21:06:55Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -86,34 +97,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "43beb759-21df-479e-8369-3a27a4c718bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:32 GMT", + "Date": "Mon, 25 Oct 2021 21:06:58 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": "1f52841e-c71f-448d-9745-81d79027c9e2", - "lastUpdateDateTime": "2021-08-06T01:47:31Z", - "createdDateTime": "2021-08-06T01:47:31Z", - "expirationDateTime": "2021-08-07T01:47:31Z", + "jobId": "c29ea39b-9a5c-4672-93ee-6f209851c52a", + "lastUpdateDateTime": "2021-10-25T21:06:56Z", + "createdDateTime": "2021-10-25T21:06:55Z", + "expirationDateTime": "2021-10-26T21:06:55Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -123,34 +139,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "053746be-715b-4728-8327-6154a73a6d45", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:33 GMT", + "Date": "Mon, 25 Oct 2021 21:06:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "1f52841e-c71f-448d-9745-81d79027c9e2", - "lastUpdateDateTime": "2021-08-06T01:47:31Z", - "createdDateTime": "2021-08-06T01:47:31Z", - "expirationDateTime": "2021-08-07T01:47:31Z", + "jobId": "c29ea39b-9a5c-4672-93ee-6f209851c52a", + "lastUpdateDateTime": "2021-10-25T21:06:56Z", + "createdDateTime": "2021-10-25T21:06:55Z", + "expirationDateTime": "2021-10-26T21:06:55Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -160,34 +181,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "99ea81cc-d49f-488b-a723-1b01e9874b26", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:34 GMT", + "Date": "Mon, 25 Oct 2021 21:07:01 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": "1f52841e-c71f-448d-9745-81d79027c9e2", - "lastUpdateDateTime": "2021-08-06T01:47:31Z", - "createdDateTime": "2021-08-06T01:47:31Z", - "expirationDateTime": "2021-08-07T01:47:31Z", + "jobId": "c29ea39b-9a5c-4672-93ee-6f209851c52a", + "lastUpdateDateTime": "2021-10-25T21:06:56Z", + "createdDateTime": "2021-10-25T21:06:55Z", + "expirationDateTime": "2021-10-26T21:06:55Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -197,34 +223,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "a3c5cfc2-09db-4187-9b78-08337c1e08b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:35 GMT", + "Date": "Mon, 25 Oct 2021 21:07:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "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": "c29ea39b-9a5c-4672-93ee-6f209851c52a", + "lastUpdateDateTime": "2021-10-25T21:06:56Z", + "createdDateTime": "2021-10-25T21:06:55Z", + "expirationDateTime": "2021-10-26T21:06:55Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -234,34 +265,165 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/1f52841e-c71f-448d-9745-81d79027c9e2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "15671ffa-340d-4889-a615-d917ea516e6c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:07: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": "c29ea39b-9a5c-4672-93ee-6f209851c52a", + "lastUpdateDateTime": "2021-10-25T21:06:56Z", + "createdDateTime": "2021-10-25T21:06:55Z", + "expirationDateTime": "2021-10-26T21:06:55Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "728aac35-0d92-4769-addc-79f1526da326", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:07:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "c29ea39b-9a5c-4672-93ee-6f209851c52a", + "lastUpdateDateTime": "2021-10-25T21:06:56Z", + "createdDateTime": "2021-10-25T21:06:55Z", + "expirationDateTime": "2021-10-26T21:06:55Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "f7f01de9-26b7-4d71-b49d-dfb3602c01c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:07:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "333" + }, + "ResponseBody": { + "jobId": "c29ea39b-9a5c-4672-93ee-6f209851c52a", + "lastUpdateDateTime": "2021-10-25T21:06:56Z", + "createdDateTime": "2021-10-25T21:06:55Z", + "expirationDateTime": "2021-10-26T21:06:55Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c29ea39b-9a5c-4672-93ee-6f209851c52a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "7a0ba672-44d1-474a-9c89-4ac9a3609609", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:37 GMT", + "Date": "Mon, 25 Oct 2021 21:07:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "69" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "176" }, "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": "c29ea39b-9a5c-4672-93ee-6f209851c52a", + "lastUpdateDateTime": "2021-10-25T21:07:08Z", + "createdDateTime": "2021-10-25T21:06:55Z", + "expirationDateTime": "2021-10-26T21:06:55Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -269,8 +431,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:47:37.3970667Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:07:08.3952502Z", "state": "succeeded", "results": { "documents": [ @@ -304,6 +465,6 @@ "Variables": { "RandomSeed": "1355402112", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTest.json index 18563c20db3b..cd6692cd986b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "241", "Content-Type": "application/json", - "traceparent": "00-296a52c2c464ed42b5f4a07b1820029b-3da31168a69a9045-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-436413c2a6613a4d929afb735cb3f406-07c4df5f1ee7a744-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de59ba8e1395f2e982e2a8b6c3b12fcf", "x-ms-return-client-request-id": "true" }, @@ -38,45 +38,44 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "73b1109c-7c83-4514-841f-93bc2ce63c0a", - "Date": "Fri, 06 Aug 2021 01:41:54 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/b2c0fbbe-520b-47d3-9324-286ae16c1dec", + "apim-request-id": "ae977378-4ea5-4b8c-81b1-7de51350e182", + "Date": "Mon, 25 Oct 2021 23:04:01 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/bde359ab-5b40-46b5-b084-9574cd36af3e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "340" + "x-envoy-upstream-service-time": "779" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/b2c0fbbe-520b-47d3-9324-286ae16c1dec", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/bde359ab-5b40-46b5-b084-9574cd36af3e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0f08a276f98a811231335a436578f77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65049d09-dae1-48af-a07c-0ce0c65cc76d", + "apim-request-id": "92d6479f-50be-4bef-b158-8266130466a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:54 GMT", + "Date": "Mon, 25 Oct 2021 23:04:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { - "jobId": "b2c0fbbe-520b-47d3-9324-286ae16c1dec", - "lastUpdateDateTime": "2021-08-06T01:41:54Z", - "createdDateTime": "2021-08-06T01:41:54Z", - "expirationDateTime": "2021-08-07T01:41:54Z", + "jobId": "bde359ab-5b40-46b5-b084-9574cd36af3e", + "lastUpdateDateTime": "2021-10-25T23:04:01Z", + "createdDateTime": "2021-10-25T23:04:01Z", + "expirationDateTime": "2021-10-26T23:04:01Z", "status": "notStarted", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -86,34 +85,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/b2c0fbbe-520b-47d3-9324-286ae16c1dec", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/bde359ab-5b40-46b5-b084-9574cd36af3e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec1ef899d7f19ce637bb763a0306aa84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3fbb4499-48e9-44fb-bed1-38cb9519b2cd", + "apim-request-id": "136d2d60-f72e-4c40-8db3-30c3b58fdb2f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:55 GMT", + "Date": "Mon, 25 Oct 2021 23:04:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "b2c0fbbe-520b-47d3-9324-286ae16c1dec", - "lastUpdateDateTime": "2021-08-06T01:41:55Z", - "createdDateTime": "2021-08-06T01:41:54Z", - "expirationDateTime": "2021-08-07T01:41:54Z", + "jobId": "bde359ab-5b40-46b5-b084-9574cd36af3e", + "lastUpdateDateTime": "2021-10-25T23:04:01Z", + "createdDateTime": "2021-10-25T23:04:01Z", + "expirationDateTime": "2021-10-26T23:04:01Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -123,34 +121,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/b2c0fbbe-520b-47d3-9324-286ae16c1dec", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/bde359ab-5b40-46b5-b084-9574cd36af3e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8b531a4828c1ef7a8b1ba81de45bc2b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9885d741-2128-4f08-8866-06ee5018d51a", + "apim-request-id": "fd8ff601-3e4a-4f4d-81bb-70e89edfa822", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:56 GMT", + "Date": "Mon, 25 Oct 2021 23:04: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": "b2c0fbbe-520b-47d3-9324-286ae16c1dec", - "lastUpdateDateTime": "2021-08-06T01:41:55Z", - "createdDateTime": "2021-08-06T01:41:54Z", - "expirationDateTime": "2021-08-07T01:41:54Z", + "jobId": "bde359ab-5b40-46b5-b084-9574cd36af3e", + "lastUpdateDateTime": "2021-10-25T23:04:01Z", + "createdDateTime": "2021-10-25T23:04:01Z", + "expirationDateTime": "2021-10-26T23:04:01Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -160,34 +157,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/b2c0fbbe-520b-47d3-9324-286ae16c1dec", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/bde359ab-5b40-46b5-b084-9574cd36af3e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb1d3152439250dea35398dcf9d7a41d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6f6ee54-555e-4dbd-9e87-f8444f7ea407", + "apim-request-id": "bd4927d7-820e-4e38-9b6e-9c09d076bc12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:57 GMT", + "Date": "Mon, 25 Oct 2021 23:04:04 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": "b2c0fbbe-520b-47d3-9324-286ae16c1dec", - "lastUpdateDateTime": "2021-08-06T01:41:55Z", - "createdDateTime": "2021-08-06T01:41:54Z", - "expirationDateTime": "2021-08-07T01:41:54Z", + "jobId": "bde359ab-5b40-46b5-b084-9574cd36af3e", + "lastUpdateDateTime": "2021-10-25T23:04:01Z", + "createdDateTime": "2021-10-25T23:04:01Z", + "expirationDateTime": "2021-10-26T23:04:01Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -197,34 +193,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/b2c0fbbe-520b-47d3-9324-286ae16c1dec", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/bde359ab-5b40-46b5-b084-9574cd36af3e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04ffb169e6a116ea00ff433f1d64bef2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "578c1b0a-aba4-4a60-9d5f-bf5d026a5212", + "apim-request-id": "6806300c-8418-439d-a746-79ee57c0657f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:58 GMT", + "Date": "Mon, 25 Oct 2021 23:04:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "b2c0fbbe-520b-47d3-9324-286ae16c1dec", - "lastUpdateDateTime": "2021-08-06T01:41:55Z", - "createdDateTime": "2021-08-06T01:41:54Z", - "expirationDateTime": "2021-08-07T01:41:54Z", + "jobId": "bde359ab-5b40-46b5-b084-9574cd36af3e", + "lastUpdateDateTime": "2021-10-25T23:04:01Z", + "createdDateTime": "2021-10-25T23:04:01Z", + "expirationDateTime": "2021-10-26T23:04:01Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -234,34 +229,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/b2c0fbbe-520b-47d3-9324-286ae16c1dec", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/bde359ab-5b40-46b5-b084-9574cd36af3e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2e74affdfe961f153650539ea1a25d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33e8e78c-bdf5-40b9-8d42-7870218d9742", + "apim-request-id": "d28ac82c-aa7f-45f3-b1f0-4e4429296584", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:41:59 GMT", + "Date": "Mon, 25 Oct 2021 23:04: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": "b2c0fbbe-520b-47d3-9324-286ae16c1dec", - "lastUpdateDateTime": "2021-08-06T01:41:55Z", - "createdDateTime": "2021-08-06T01:41:54Z", - "expirationDateTime": "2021-08-07T01:41:54Z", + "jobId": "bde359ab-5b40-46b5-b084-9574cd36af3e", + "lastUpdateDateTime": "2021-10-25T23:04:01Z", + "createdDateTime": "2021-10-25T23:04:01Z", + "expirationDateTime": "2021-10-26T23:04:01Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -271,71 +265,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/b2c0fbbe-520b-47d3-9324-286ae16c1dec", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/bde359ab-5b40-46b5-b084-9574cd36af3e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d189c0cb7466b8a4606ca93ff9e333e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ce224ac-1a90-425c-a3ff-62ee619afabe", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01: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": "b2c0fbbe-520b-47d3-9324-286ae16c1dec", - "lastUpdateDateTime": "2021-08-06T01:41:55Z", - "createdDateTime": "2021-08-06T01:41:54Z", - "expirationDateTime": "2021-08-07T01:41: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/b2c0fbbe-520b-47d3-9324-286ae16c1dec", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "aedda695d2f08a33c09db13ce1b02ce6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f04032c6-7e26-463f-9677-076943cd16ae", + "apim-request-id": "be9dfad5-8085-4173-b850-eb6e007a5c38", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:01 GMT", + "Date": "Mon, 25 Oct 2021 23:04:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "10228" }, "ResponseBody": { - "jobId": "b2c0fbbe-520b-47d3-9324-286ae16c1dec", - "lastUpdateDateTime": "2021-08-06T01:42:01Z", - "createdDateTime": "2021-08-06T01:41:54Z", - "expirationDateTime": "2021-08-07T01:41:54Z", + "jobId": "bde359ab-5b40-46b5-b084-9574cd36af3e", + "lastUpdateDateTime": "2021-10-25T23:04:08Z", + "createdDateTime": "2021-10-25T23:04:01Z", + "expirationDateTime": "2021-10-26T23:04:01Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -343,8 +299,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:42:01.360497Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T23:04:08.4230886Z", "state": "succeeded", "results": { "documents": [ @@ -377,6 +332,6 @@ ], "Variables": { "RandomSeed": "1505286662", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTestAsync.json index b079f6a689a1..3d72b6d17e9c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "241", "Content-Type": "application/json", - "traceparent": "00-44fb4188459c2b489468a203dcc0971c-639aea42af4f684d-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-f2a45e7c7b94944aad3586acc20565eb-a726a4d305bcc840-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec9c0c6aa9ca8c9cbbe33cb4c774789e", "x-ms-return-client-request-id": "true" }, @@ -38,45 +38,44 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "eb3d11dd-33f3-45ce-895e-5381eaffa8b3", - "Date": "Fri, 06 Aug 2021 01:47:38 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f0206098-dbf0-4995-a6a9-8ae89cac76ea", + "apim-request-id": "0c48745d-fe0d-42e4-8f3c-6a65ae919bb9", + "Date": "Mon, 25 Oct 2021 23:04:19 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "212" + "x-envoy-upstream-service-time": "291" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f0206098-dbf0-4995-a6a9-8ae89cac76ea", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d368261fe68dfc54398eceda38310a93", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cefd2dcd-af82-4888-8fae-437ebe3645b0", + "apim-request-id": "a60dfcdd-62ea-43a3-97d8-e5f64874e614", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:38 GMT", + "Date": "Mon, 25 Oct 2021 23:04: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": "f0206098-dbf0-4995-a6a9-8ae89cac76ea", - "lastUpdateDateTime": "2021-08-06T01:47:38Z", - "createdDateTime": "2021-08-06T01:47:38Z", - "expirationDateTime": "2021-08-07T01:47:38Z", + "jobId": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:20Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", "status": "notStarted", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -86,34 +85,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f0206098-dbf0-4995-a6a9-8ae89cac76ea", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f826ed24a6800a8a382a14c7adf928d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f877459f-7e3e-4285-bb06-0d293d985372", + "apim-request-id": "7479c981-5abb-4bd0-a57a-f2cbc8041344", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:39 GMT", + "Date": "Mon, 25 Oct 2021 23:04:20 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": "f0206098-dbf0-4995-a6a9-8ae89cac76ea", - "lastUpdateDateTime": "2021-08-06T01:47:39Z", - "createdDateTime": "2021-08-06T01:47:38Z", - "expirationDateTime": "2021-08-07T01:47:38Z", + "jobId": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:20Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -123,34 +121,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f0206098-dbf0-4995-a6a9-8ae89cac76ea", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "902df9e8f6a48466b89fb23bdbc1538a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "80f804e6-bef1-4d9b-aabe-53d8f8d167a9", + "apim-request-id": "a29b2eff-9180-407f-8618-39c91d3d1a02", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:40 GMT", + "Date": "Mon, 25 Oct 2021 23:04: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": "230" }, "ResponseBody": { - "jobId": "f0206098-dbf0-4995-a6a9-8ae89cac76ea", - "lastUpdateDateTime": "2021-08-06T01:47:39Z", - "createdDateTime": "2021-08-06T01:47:38Z", - "expirationDateTime": "2021-08-07T01:47:38Z", + "jobId": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:20Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -160,34 +157,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f0206098-dbf0-4995-a6a9-8ae89cac76ea", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da90a9d97f4e791d9c5d9a62d18c4e3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a96cfde-b726-431f-8de5-e5a9cc9dec69", + "apim-request-id": "7f993928-ad2c-4cc0-b795-2b09555e41bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:41 GMT", + "Date": "Mon, 25 Oct 2021 23:04:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { - "jobId": "f0206098-dbf0-4995-a6a9-8ae89cac76ea", - "lastUpdateDateTime": "2021-08-06T01:47:39Z", - "createdDateTime": "2021-08-06T01:47:38Z", - "expirationDateTime": "2021-08-07T01:47:38Z", + "jobId": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:20Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -197,34 +193,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f0206098-dbf0-4995-a6a9-8ae89cac76ea", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ff2f56679032dee86a13fe0f34e2e77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "273ed045-e6db-4d8e-ba2e-2b7c32bd7d6d", + "apim-request-id": "a822ca81-0356-403a-ae47-55dcdfc9b82e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:42 GMT", + "Date": "Mon, 25 Oct 2021 23:04: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": "f0206098-dbf0-4995-a6a9-8ae89cac76ea", - "lastUpdateDateTime": "2021-08-06T01:47:39Z", - "createdDateTime": "2021-08-06T01:47:38Z", - "expirationDateTime": "2021-08-07T01:47:38Z", + "jobId": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:20Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -234,34 +229,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f0206098-dbf0-4995-a6a9-8ae89cac76ea", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04ee8ad64e69698adbb4f4465b03b22c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd7f7f25-51e6-4484-a622-e709bc5b07a6", + "apim-request-id": "7caae705-58dd-4124-9242-3683807eb81c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:43 GMT", + "Date": "Mon, 25 Oct 2021 23:04: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": "8" }, "ResponseBody": { - "jobId": "f0206098-dbf0-4995-a6a9-8ae89cac76ea", - "lastUpdateDateTime": "2021-08-06T01:47:39Z", - "createdDateTime": "2021-08-06T01:47:38Z", - "expirationDateTime": "2021-08-07T01:47:38Z", + "jobId": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:20Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -271,34 +265,33 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f0206098-dbf0-4995-a6a9-8ae89cac76ea", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6d4725014cf5f87ba6253ac3f3d854d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f65de1d-ef21-46d5-a9e0-5acf3dea6182", + "apim-request-id": "0fd9a45b-fb81-4465-823f-f93840bb0519", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:44 GMT", + "Date": "Mon, 25 Oct 2021 23:04: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": "f0206098-dbf0-4995-a6a9-8ae89cac76ea", - "lastUpdateDateTime": "2021-08-06T01:47:39Z", - "createdDateTime": "2021-08-06T01:47:38Z", - "expirationDateTime": "2021-08-07T01:47:38Z", + "jobId": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:20Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -308,34 +301,105 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/f0206098-dbf0-4995-a6a9-8ae89cac76ea", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "478c232f4a9e18d66b89634e85a7d283", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06725743-7dc7-4f52-bbb6-7382fb058a27", + "apim-request-id": "78ff3337-ac2a-4c67-bf93-e7d213b06f7f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:04: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": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:20Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "808f13ef4879c2a8038e4907fbdd299d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d728c089-e058-4061-ad12-be0a62d198f9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:04: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": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:20Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/04498825-21bc-495a-a69d-5a0864017e16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3817a62f6b76068d9cbc7a46b038da13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0181f8b4-0d12-42aa-bad7-25db42ebc24e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:45 GMT", + "Date": "Mon, 25 Oct 2021 23:04:29 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": "202" }, "ResponseBody": { - "jobId": "f0206098-dbf0-4995-a6a9-8ae89cac76ea", - "lastUpdateDateTime": "2021-08-06T01:47:45Z", - "createdDateTime": "2021-08-06T01:47:38Z", - "expirationDateTime": "2021-08-07T01:47:38Z", + "jobId": "04498825-21bc-495a-a69d-5a0864017e16", + "lastUpdateDateTime": "2021-10-25T23:04:30Z", + "createdDateTime": "2021-10-25T23:04:19Z", + "expirationDateTime": "2021-10-26T23:04:19Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -343,8 +407,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:47:45.3854836Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T23:04:30.176073Z", "state": "succeeded", "results": { "documents": [ @@ -377,6 +440,6 @@ ], "Variables": { "RandomSeed": "1711546596", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ 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..4dd3d42f2009 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-25d41f390b5c314fbb04872ddc526638-4f6a9f8447a22841-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "c99cb42a5a82e854b9e5b6d84f7b86ab", "x-ms-return-client-request-id": "true" }, @@ -36,13 +42,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "5f36ce92-0f01-4dca-a5ce-9b20061058e8", + "apim-request-id": "ec0097a4-2b2d-437a-aaa0-f72222efb7e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:08 GMT", + "Date": "Mon, 25 Oct 2021 21:03:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -59,6 +65,6 @@ "Variables": { "RandomSeed": "776948702", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..72b4e49077d8 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-47ddfa85c8c51a45ac9f5df5e4f33653-d95f982b8c82f947-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "ac619f24e6117d0afaa59ef96ef473c7", "x-ms-return-client-request-id": "true" }, @@ -36,12 +42,12 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3621c834-26f3-487e-9502-47e7b6663d8e", + "apim-request-id": "c9f7d7d4-0d90-4a9b-8043-f1b4558602d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:52 GMT", + "Date": "Mon, 25 Oct 2021 21:07:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "5" }, "ResponseBody": { @@ -59,6 +65,6 @@ "Variables": { "RandomSeed": "1285200460", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..d997e04279f1 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-f3d68eca2616f3428bbe13e01e1c9474-34f49d820867c541-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "5576fa283fd263773849a876efb14577", "x-ms-return-client-request-id": "true" }, @@ -38,45 +44,50 @@ }, "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": "6d7484d3-82db-47a6-8009-6f4d6629b56a", + "Date": "Mon, 25 Oct 2021 21:03:39 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/74f3411e-5a5b-47ae-8913-98e39dc35e1d", "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": "179" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/74f3411e-5a5b-47ae-8913-98e39dc35e1d", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "bc1596de-4142-4f3f-a294-b07b92f025ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:02 GMT", + "Date": "Mon, 25 Oct 2021 21:03:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "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": "74f3411e-5a5b-47ae-8913-98e39dc35e1d", + "lastUpdateDateTime": "2021-10-25T21:03:39Z", + "createdDateTime": "2021-10-25T21:03:39Z", + "expirationDateTime": "2021-10-26T21:03:39Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -86,34 +97,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/74f3411e-5a5b-47ae-8913-98e39dc35e1d", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "e9026c7f-3507-49f3-9d9d-2fc614557465", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:03 GMT", + "Date": "Mon, 25 Oct 2021 21:03:40 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": "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": "74f3411e-5a5b-47ae-8913-98e39dc35e1d", + "lastUpdateDateTime": "2021-10-25T21:03:39Z", + "createdDateTime": "2021-10-25T21:03:39Z", + "expirationDateTime": "2021-10-26T21:03:39Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -123,34 +139,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/74f3411e-5a5b-47ae-8913-98e39dc35e1d", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "465c3079-230b-4136-966b-eecb2b0067fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:04 GMT", + "Date": "Mon, 25 Oct 2021 21:03:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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": "74f3411e-5a5b-47ae-8913-98e39dc35e1d", + "lastUpdateDateTime": "2021-10-25T21:03:39Z", + "createdDateTime": "2021-10-25T21:03:39Z", + "expirationDateTime": "2021-10-26T21:03:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -160,34 +181,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/74f3411e-5a5b-47ae-8913-98e39dc35e1d", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "946ce5d6-3c92-4692-8bd0-a6ed3ae71701", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:05 GMT", + "Date": "Mon, 25 Oct 2021 21:03: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "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": "74f3411e-5a5b-47ae-8913-98e39dc35e1d", + "lastUpdateDateTime": "2021-10-25T21:03:39Z", + "createdDateTime": "2021-10-25T21:03:39Z", + "expirationDateTime": "2021-10-26T21:03:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -197,145 +223,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/74f3411e-5a5b-47ae-8913-98e39dc35e1d", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "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": "d93d7195200c8191e2b2c61bb80384f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c98c164f-08f8-495b-b4d7-67b607b47666", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "jobId": "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": "fdac43f0ca00d3414ce829a2d047c9e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bea70fe9-f4b3-42c4-8908-70290e6d96a9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "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": "5fc36b8c60e0b21c8639139eedd01131", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "97723e87-d1fb-4b68-aa31-57418a803be4", + "apim-request-id": "4cafd7d6-5dbc-410d-ba66-7d4c502f7de8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:09 GMT", + "Date": "Mon, 25 Oct 2021 21:03:44 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": "e24e25c9-332d-4284-9f9b-f49214d6e949", - "lastUpdateDateTime": "2021-08-06T01:42:04Z", - "createdDateTime": "2021-08-06T01:42:02Z", - "expirationDateTime": "2021-08-07T01:42:02Z", + "jobId": "74f3411e-5a5b-47ae-8913-98e39dc35e1d", + "lastUpdateDateTime": "2021-10-25T21:03:39Z", + "createdDateTime": "2021-10-25T21:03:39Z", + "expirationDateTime": "2021-10-26T21:03:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -345,293 +265,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/74f3411e-5a5b-47ae-8913-98e39dc35e1d", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9692b558deb4cad42f698c24f7efb09a", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "7c5a5d1d-e77d-4c13-991d-7ba2a8c95ed1", + "apim-request-id": "5e7de2ec-4655-4f3f-87d9-96a3a7d81eb7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42:10 GMT", + "Date": "Mon, 25 Oct 2021 21:03:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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", + "jobId": "74f3411e-5a5b-47ae-8913-98e39dc35e1d", + "lastUpdateDateTime": "2021-10-25T21:03:39Z", + "createdDateTime": "2021-10-25T21:03:39Z", + "expirationDateTime": "2021-10-26T21:03:39Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -641,1736 +307,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e24e25c9-332d-4284-9f9b-f49214d6e949", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/74f3411e-5a5b-47ae-8913-98e39dc35e1d", "RequestMethod": "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 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", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:42: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": "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": "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.20211025.1", + "(.NET Core 3.1.20; 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": "51ea0487-d4cc-4848-a4ac-bfff5db34065", + "apim-request-id": "d11cc77f-5a6f-496e-af91-1f1cd2098344", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:08 GMT", + "Date": "Mon, 25 Oct 2021 21:03:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8443" }, "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": "74f3411e-5a5b-47ae-8913-98e39dc35e1d", + "lastUpdateDateTime": "2021-10-25T21:03:47Z", + "createdDateTime": "2021-10-25T21:03:39Z", + "expirationDateTime": "2021-10-26T21:03:39Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -2378,8 +347,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:07.891801Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:03:47.2830644Z", "state": "succeeded", "results": { "documents": [ @@ -2417,6 +385,6 @@ "Variables": { "RandomSeed": "538531571", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..7d61b3cdfc6f 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-966300cd3a34f94aafa86468c962c79f-5dbc8e6306659140-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "f91fef4332cac890575fea1876896219", "x-ms-return-client-request-id": "true" }, @@ -38,45 +44,50 @@ }, "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": "7ff8c74d-9ff8-42f5-a4b8-1d4807187b34", + "Date": "Mon, 25 Oct 2021 21:07:14 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "188" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "427" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "7fa1d304-e425-4710-be44-efdc6867cea5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:46 GMT", + "Date": "Mon, 25 Oct 2021 21:07:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "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": "notStarted", + "jobId": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:15Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -86,34 +97,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "0fe940e4-eb2e-4407-a7a2-673f7b80ef77", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:47 GMT", + "Date": "Mon, 25 Oct 2021 21:07:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "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": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:15Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -123,34 +139,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "4335d299-b2d9-4974-befd-4c6448a966a8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:48 GMT", + "Date": "Mon, 25 Oct 2021 21:07:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" + "X-Content-Type-Options": "nosniff", + "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": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:15Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -160,34 +181,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "b36d7690-7a0d-486b-b3fc-4381ac2b1091", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:49 GMT", + "Date": "Mon, 25 Oct 2021 21:07: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": "7" }, "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": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:15Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -197,34 +223,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "e8720167-d5b1-429f-bc61-f89c8f4ee0c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:50 GMT", + "Date": "Mon, 25 Oct 2021 21:07:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "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": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:15Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -234,34 +265,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "40f5c1dd-ddbe-4764-be07-6e5562ceb66b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:51 GMT", + "Date": "Mon, 25 Oct 2021 21:07: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-Content-Type-Options": "nosniff", + "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": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:15Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -271,34 +307,165 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4d5b6de2-3820-4f7c-9780-719a7bc21690", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "e867c1e2-3d34-4c2c-8ae6-8202daf9b0a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:07: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": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:15Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7429e9c3888508191740b775e7a7bc5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b1d86897-6272-4c59-830d-ed9dd6195409", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:07:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "jobId": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:15Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39d1b6db57b74beb755b3ad261df1717", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7b18c61-2582-42d3-a2b6-77b2bf892e10", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:07:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "400" + }, + "ResponseBody": { + "jobId": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:15Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "437ca6414b1f9f34dd26d366c0fa532c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1ad53d8d-394d-4df5-a853-dc780386ca5f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:52 GMT", + "Date": "Mon, 25 Oct 2021 21:07:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "74" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1218" }, "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": "9b5b67f6-e9ab-4a11-8a55-a8d006ae324f", + "lastUpdateDateTime": "2021-10-25T21:07:32Z", + "createdDateTime": "2021-10-25T21:07:14Z", + "expirationDateTime": "2021-10-26T21:07:14Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -306,8 +473,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:47:52.4305978Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:07:32.9197386Z", "state": "succeeded", "results": { "documents": [ @@ -345,6 +511,6 @@ "Variables": { "RandomSeed": "1508474165", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json index 99dce9ba3587..f9ebdcc5f63c 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-46d99d8d44748343ac55710d139d76ab-2715442ba0265a4a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "a87cf6cc9d26e81e4ad3c40561433cdc", "x-ms-return-client-request-id": "true" }, @@ -39,42 +45,48 @@ }, "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": "815f30b5-2337-4223-8efb-b52522958f15", + "Date": "Mon, 25 Oct 2021 21:03:56 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d8d116a2-db18-400e-811b-8d3d371f3995", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "190" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "214" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d8d116a2-db18-400e-811b-8d3d371f3995", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "dc6e948c-7f0a-4fce-9c2b-939bf5f89165", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:08 GMT", + "Date": "Mon, 25 Oct 2021 21:03:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "87" }, "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": "d8d116a2-db18-400e-811b-8d3d371f3995", + "lastUpdateDateTime": "2021-10-25T21:03:56Z", + "createdDateTime": "2021-10-25T21:03:56Z", + "expirationDateTime": "2021-10-26T21:03:56Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -87,31 +99,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d8d116a2-db18-400e-811b-8d3d371f3995", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "79f49455-c9f8-4e25-b436-873b78d798a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:09 GMT", + "Date": "Mon, 25 Oct 2021 21:03:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "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": "d8d116a2-db18-400e-811b-8d3d371f3995", + "lastUpdateDateTime": "2021-10-25T21:03:57Z", + "createdDateTime": "2021-10-25T21:03:56Z", + "expirationDateTime": "2021-10-26T21:03:56Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -124,31 +142,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d8d116a2-db18-400e-811b-8d3d371f3995", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "e41c9b2d-7911-4f9a-bb7f-8320f614238b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:10 GMT", + "Date": "Mon, 25 Oct 2021 21:03:59 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": "21" }, "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": "d8d116a2-db18-400e-811b-8d3d371f3995", + "lastUpdateDateTime": "2021-10-25T21:03:57Z", + "createdDateTime": "2021-10-25T21:03:56Z", + "expirationDateTime": "2021-10-26T21:03:56Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -161,179 +185,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2ce5c396-b9c8-4847-95d0-f38cbe8f4845", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d8d116a2-db18-400e-811b-8d3d371f3995", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "6066afc6-f42e-4070-837f-af31a3051fe1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:11 GMT", + "Date": "Mon, 25 Oct 2021 21:04:00 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": "113" }, "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", - "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": "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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "58d25938-373f-446f-97dd-b77e33973b5a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "72" - }, - "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": "d8d116a2-db18-400e-811b-8d3d371f3995", + "lastUpdateDateTime": "2021-10-25T21:04:00Z", + "createdDateTime": "2021-10-25T21:03:56Z", + "expirationDateTime": "2021-10-26T21:03:56Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -344,8 +226,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:15.8340959Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:04:00.5088773Z", "state": "succeeded", "results": { "documents": [ @@ -361,7 +242,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -381,6 +261,6 @@ "Variables": { "RandomSeed": "2064506440", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json index ac8e09c7e206..1877c319da1b 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-fa1c03d9629b00439f0f45b4d8bfce54-52924e2a35594445-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "ff1f44cf0b7d52519f4611a53ca09dbe", "x-ms-return-client-request-id": "true" }, @@ -39,43 +45,49 @@ }, "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": "ed98e8e1-d339-439e-b5d1-cef027193c95", + "Date": "Mon, 25 Oct 2021 21:07:36 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9f939849-7fbe-405d-a83d-48ebd2bafdbc", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "192" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "228" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9f939849-7fbe-405d-a83d-48ebd2bafdbc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "b662e0bb-15e6-443a-afeb-aa8365a39862", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:52 GMT", + "Date": "Mon, 25 Oct 2021 21:07:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { - "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", + "jobId": "9f939849-7fbe-405d-a83d-48ebd2bafdbc", + "lastUpdateDateTime": "2021-10-25T21:07:36Z", + "createdDateTime": "2021-10-25T21:07:36Z", + "expirationDateTime": "2021-10-26T21:07:36Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { @@ -87,32 +99,38 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9f939849-7fbe-405d-a83d-48ebd2bafdbc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "929ec345-c3c2-4c4d-ab9a-2b36f970baf1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:53 GMT", + "Date": "Mon, 25 Oct 2021 21:07:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "806" }, "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", + "jobId": "9f939849-7fbe-405d-a83d-48ebd2bafdbc", + "lastUpdateDateTime": "2021-10-25T21:07:36Z", + "createdDateTime": "2021-10-25T21:07:36Z", + "expirationDateTime": "2021-10-26T21:07:36Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { @@ -124,31 +142,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9f939849-7fbe-405d-a83d-48ebd2bafdbc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "be142acd-6c20-4615-9547-f855510c4fe0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:55 GMT", + "Date": "Mon, 25 Oct 2021 21:07: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": "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", + "jobId": "9f939849-7fbe-405d-a83d-48ebd2bafdbc", + "lastUpdateDateTime": "2021-10-25T21:07:36Z", + "createdDateTime": "2021-10-25T21:07:36Z", + "expirationDateTime": "2021-10-26T21:07:36Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -161,31 +185,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9f939849-7fbe-405d-a83d-48ebd2bafdbc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "cf254d3d-59fc-4efb-8d93-0d6bf356c22a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:47:56 GMT", + "Date": "Mon, 25 Oct 2021 21:07:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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", + "jobId": "9f939849-7fbe-405d-a83d-48ebd2bafdbc", + "lastUpdateDateTime": "2021-10-25T21:07:36Z", + "createdDateTime": "2021-10-25T21:07:36Z", + "expirationDateTime": "2021-10-26T21:07:36Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -198,2214 +228,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bd489dd1-82f9-4243-b17c-f21463e9c6f5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9f939849-7fbe-405d-a83d-48ebd2bafdbc", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48: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": "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": "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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "564db057-7a7f-46e9-a246-1f803bfb3f64", + "apim-request-id": "e9023545-cba6-4529-a1db-864151484291", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:58 GMT", + "Date": "Mon, 25 Oct 2021 21:07:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "651" }, "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": "9f939849-7fbe-405d-a83d-48ebd2bafdbc", + "lastUpdateDateTime": "2021-10-25T21:07:46Z", + "createdDateTime": "2021-10-25T21:07:36Z", + "expirationDateTime": "2021-10-26T21:07:36Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", @@ -2416,8 +269,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:48:58.5944764Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:07:46.000271Z", "state": "succeeded", "results": { "documents": [ @@ -2433,7 +285,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -2453,6 +304,6 @@ "Variables": { "RandomSeed": "915431106", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..318c596a4ced 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-bfe16c6d6c0cb947bc8e2da5458a5839-4d8cbf68116b1443-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "da9c404f19269b117394a823858b72a9", "x-ms-return-client-request-id": "true" }, @@ -67,43 +73,49 @@ }, "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": "b840630b-7150-4b99-a202-c1fe57c9587d", + "Date": "Mon, 25 Oct 2021 21:04:01 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "639" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "711" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "465bd452-100a-4234-ad12-575874850932", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:16 GMT", + "Date": "Mon, 25 Oct 2021 21:04:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "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", - "status": "notStarted", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:02Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { @@ -115,31 +127,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "a1e881a2-dc62-4b15-ab72-5cc0ddb67847", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:18 GMT", + "Date": "Mon, 25 Oct 2021 21:04:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "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", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:02Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -152,31 +170,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "0d8117b2-a7f3-4322-bb13-494ae353a946", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:19 GMT", + "Date": "Mon, 25 Oct 2021 21:04:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "29" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "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", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:02Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -189,31 +213,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "f2021868-0aec-44dc-a15e-98f2d7df79c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:20 GMT", + "Date": "Mon, 25 Oct 2021 21:04:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "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", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:02Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -226,31 +256,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "8e113798-5173-4e11-b13a-299da817087b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:21 GMT", + "Date": "Mon, 25 Oct 2021 21:04:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "27" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "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", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:02Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -263,31 +299,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "067c470a-fbdc-4c37-8b19-467937b15153", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:22 GMT", + "Date": "Mon, 25 Oct 2021 21:04: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": "13" }, "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", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:08Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -300,84 +342,53 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "df55e4f0-ebad-4ffa-b80c-2af92da29e9a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:24 GMT", + "Date": "Mon, 25 Oct 2021 21:04:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:09Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 3, + "inProgress": 4, "total": 5, - "entityRecognitionTasks": [ + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:04:09.8480649Z", "state": "succeeded", "results": { "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -385,7 +396,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 1.0 + "confidenceScore": 0.97 }, { "text": "Bill Gates", @@ -399,12 +410,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": [ { @@ -412,21 +424,63 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.95 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2021-01-15" } } - ], + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "7f576bfd-682c-4ed5-9d81-c1f55aa46bea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:04:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" + }, + "ResponseBody": { + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:09Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:04:09.8480649Z", "state": "succeeded", "results": { "documents": [ @@ -467,7 +521,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.96 + "confidenceScore": 0.95 } ], "warnings": [] @@ -482,31 +536,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "8655beb2-9586-411d-ada7-43b3ce8d0781", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:25 GMT", + "Date": "Mon, 25 Oct 2021 21:04:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "122" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { - "jobId": "3fe1df10-31ed-4b3a-80bb-d8e497192fc2", - "lastUpdateDateTime": "2021-08-06T01:43:23Z", - "createdDateTime": "2021-08-06T01:43:16Z", - "expirationDateTime": "2021-08-07T01:43:16Z", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:12Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -515,10 +575,9 @@ "failed": 0, "inProgress": 3, "total": 5, - "entityRecognitionTasks": [ + "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:04:12.0321334Z", "state": "succeeded", "results": { "documents": [ @@ -526,52 +585,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-10-25T21:04:09.8480649Z", "state": "succeeded", "results": { "documents": [ @@ -612,7 +701,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.96 + "confidenceScore": 0.95 } ], "warnings": [] @@ -627,31 +716,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "ee5a0f71-99dc-4552-b5cf-c68f13a6f420", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:26 GMT", + "Date": "Mon, 25 Oct 2021 21:04:13 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": "131" }, "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", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:12Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -660,10 +755,9 @@ "failed": 0, "inProgress": 3, "total": 5, - "entityRecognitionTasks": [ + "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:04:12.0321334Z", "state": "succeeded", "results": { "documents": [ @@ -671,52 +765,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-10-25T21:04:09.8480649Z", "state": "succeeded", "results": { "documents": [ @@ -757,7 +881,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.96 + "confidenceScore": 0.95 } ], "warnings": [] @@ -772,43 +896,48 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/3fe1df10-31ed-4b3a-80bb-d8e497192fc2", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "e7b95355-790e-4bac-af68-9d1b3e49c069", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:43:27 GMT", + "Date": "Mon, 25 Oct 2021 21:04:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "276" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21420" }, "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", + "jobId": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:15Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 2, + "completed": 3, "failed": 0, - "inProgress": 3, + "inProgress": 2, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:04:15.6215953Z", "state": "succeeded", "results": { "documents": [ @@ -847,7 +976,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -858,10075 +987,92 @@ } } ], - "entityRecognitionPiiTasks": [ + "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:04:12.0321334Z", "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" - } - } - ] - } - } - }, - { - "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": "56b8610c6c1a37688c930ae41c4c1151", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3071a30c-8636-44bc-bdc3-426ff30b9959", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:28 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": "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": "f11edb4cd018baaac1997d868b21e660", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "72011636-7c46-436a-b33d-3ebbd6f22e9c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:29 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" - } - } - ] - } - } - }, - { - "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": "b7540fad4b5bbc5ef083cb1eb43be14f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3ff5dd20-721b-4691-a8a9-e04566046b84", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:30 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": "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": "587f9fb76aa53b99b7fe9481efe2ac6b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "89035358-724a-4ab6-8e24-570351a699ba", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:33 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": [ + "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" + }, { - "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." + "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", - "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." - } - ], + "entities": [], "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": "0c37a9ac5af801f57c610194058b0586", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9d606220-0b5d-4466-a483-94319c9a6062", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "220" - }, - "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": [] - }, + "errors": [ { "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.97 + "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" } - ], - "warnings": [] + } } ], - "errors": [], "modelVersion": "2021-06-01" } } ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:04:09.8480649Z", "state": "succeeded", "results": { "documents": [ @@ -10967,7 +1113,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.96 + "confidenceScore": 0.95 } ], "warnings": [] @@ -10977,127 +1123,42 @@ "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", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "0334e566-e6d4-4ab1-b894-1ed448b107e1", + "apim-request-id": "e39b0c80-2af5-4176-90d3-837f45fd0940", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:35 GMT", + "Date": "Mon, 25 Oct 2021 21:05:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "257" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23820" }, "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": "e25b1727-19a3-4be6-8e5b-8e4bc241c8bb", + "lastUpdateDateTime": "2021-10-25T21:04:27Z", + "createdDateTime": "2021-10-25T21:04:01Z", + "expirationDateTime": "2021-10-26T21:04:01Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -11108,8 +1169,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8225803Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:04:15.6215953Z", "state": "succeeded", "results": { "documents": [ @@ -11148,7 +1208,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -11161,8 +1221,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:34.6428612Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:04:12.0321334Z", "state": "succeeded", "results": { "documents": [ @@ -11245,8 +1304,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:23.8387217Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:04:09.8480649Z", "state": "succeeded", "results": { "documents": [ @@ -11287,7 +1345,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.96 + "confidenceScore": 0.95 } ], "warnings": [] @@ -11300,8 +1358,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:22.16426Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:04:21.222138Z", "state": "succeeded", "results": { "documents": [ @@ -11317,7 +1374,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -11332,8 +1388,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:43:47.0598154Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:04:27.7119932Z", "state": "succeeded", "results": { "documents": [ @@ -11396,6 +1451,6 @@ "Variables": { "RandomSeed": "294889338", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..5090f54fc0aa 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-21391f581e0bfa449aa804ce3e0c4a83-6789a54b020b1a45-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "89d8b003187a4095bbbb24fbfe84af54", "x-ms-return-client-request-id": "true" }, @@ -67,43 +73,49 @@ }, "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": "6b1cb275-5e6b-4e8a-bcf2-8e9f6dd03dab", + "Date": "Mon, 25 Oct 2021 21:07:46 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "400" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "522" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "28f9b83f-1632-4233-9aa4-57bfa7303875", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:48:59 GMT", + "Date": "Mon, 25 Oct 2021 21:07:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "50" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" }, "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", + "jobId": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:07:47Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { @@ -115,31 +127,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "90a45515-281d-4857-80e9-a7095522de2a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:00 GMT", + "Date": "Mon, 25 Oct 2021 21:07: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5385" }, "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", + "jobId": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:07:47Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -152,31 +170,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "ec6f0bf6-0856-45ba-a450-a674a944b221", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:02 GMT", + "Date": "Mon, 25 Oct 2021 21:07: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "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": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:07:53Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -189,31 +213,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "a774e1d8-60b2-49f3-b7ce-50b4124eec9c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:03 GMT", + "Date": "Mon, 25 Oct 2021 21:07:57 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": "d64f536a-9f24-4db0-be31-420992d7e668", - "lastUpdateDateTime": "2021-08-06T01:49:01Z", - "createdDateTime": "2021-08-06T01:48:59Z", - "expirationDateTime": "2021-08-07T01:48:59Z", + "jobId": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:07:53Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -226,299 +256,48 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "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", - "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", + "apim-request-id": "9bb6ed7f-6a2c-4d9e-8b66-faaa2094b7e7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:08 GMT", + "Date": "Mon, 25 Oct 2021 21:07:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "154" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "72" }, "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", + "jobId": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:07:57Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 3, + "inProgress": 4, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -550,9039 +329,21 @@ "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." + "id": "2", + "entities": [ + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.96 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -9590,43 +351,48 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b2572017bded7523c0abdfeb52a05783", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "f2c76560-c43e-4dcb-8f99-96762c27a748", + "apim-request-id": "7b589a75-8180-4c67-84c8-dc7bf1b3b4b8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:56 GMT", + "Date": "Mon, 25 Oct 2021 21:08:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "233" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1148" }, "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", + "jobId": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:07:59Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "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", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -9665,7 +431,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -9678,8 +444,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:07:59.2470203Z", "state": "succeeded", "results": { "documents": [ @@ -9760,117 +525,33 @@ } } ], - "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": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:07:58.6764018Z", "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." - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "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." - } + "keyPhrases": [ + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -9878,43 +559,48 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "deaba7c6b0a75ffe3cffc9928f213bda", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "2bc07336-5315-4d19-a82e-c06dbdcc7200", + "apim-request-id": "53a2d36b-d4de-4848-be8a-95c70fa0aaf4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:49:57 GMT", + "Date": "Mon, 25 Oct 2021 21:08:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "280" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "551" }, "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", + "jobId": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:07:59Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "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", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -9953,7 +639,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -9966,8 +652,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:07:59.2470203Z", "state": "succeeded", "results": { "documents": [ @@ -10048,117 +733,33 @@ } } ], - "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": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:07:58.6764018Z", "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." - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "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." - } + "keyPhrases": [ + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -10166,31 +767,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4b97d4eed4657bf4bca9abdd03611a0d", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "87846f51-daf9-44d4-a425-08532dfb5fc1", + "apim-request-id": "32771cb9-7efb-4dde-abbd-57669757a8cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:00 GMT", + "Date": "Mon, 25 Oct 2021 21:08:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "235" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1103" }, "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", + "jobId": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:08:04Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -10201,8 +808,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -10241,7 +847,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -10254,8 +860,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:07:59.2470203Z", "state": "succeeded", "results": { "documents": [ @@ -10336,65 +941,39 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:07:58.6764018Z", "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 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "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 - } + "keyPhrases": [ + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:08:04.4180726Z", "state": "succeeded", "results": { "documents": [ @@ -10454,31 +1033,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "58f85d73d442674d21f876eef490e59e", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "4275e049-a905-4cc1-a630-f4b6995b7cf0", + "apim-request-id": "0d8e0183-90c1-4972-9876-fcdb2028385a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:01 GMT", + "Date": "Mon, 25 Oct 2021 21:08:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "343" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "271" }, "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": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:08:04Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -10489,8 +1074,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -10529,7 +1113,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -10542,8 +1126,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:07:59.2470203Z", "state": "succeeded", "results": { "documents": [ @@ -10624,65 +1207,39 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:07:58.6764018Z", "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 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "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 - } + "keyPhrases": [ + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:08:04.4180726Z", "state": "succeeded", "results": { "documents": [ @@ -10742,31 +1299,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "00b841e8-e9e7-43f5-a98d-98f02080bf80", + "apim-request-id": "169cfcdd-1016-4ae9-af7f-5d24ec62c354", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:02 GMT", + "Date": "Mon, 25 Oct 2021 21:08:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "205" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "529" }, "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": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:08:04Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -10777,8 +1340,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -10817,7 +1379,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -10830,8 +1392,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:07:59.2470203Z", "state": "succeeded", "results": { "documents": [ @@ -10912,65 +1473,39 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:07:58.6764018Z", "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 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "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 - } + "keyPhrases": [ + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:08:04.4180726Z", "state": "succeeded", "results": { "documents": [ @@ -11030,31 +1565,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "2fd4a295-8aa5-42d3-ac45-99d297a33b3d", + "apim-request-id": "609d3d58-0fa9-482a-a7bc-12b356e27a6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:03 GMT", + "Date": "Mon, 25 Oct 2021 21:08:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "253" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "230" }, "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": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:08:04Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -11065,8 +1606,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -11105,7 +1645,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -11118,8 +1658,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:07:59.2470203Z", "state": "succeeded", "results": { "documents": [ @@ -11200,65 +1739,39 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:07:58.6764018Z", "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 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "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 - } + "keyPhrases": [ + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:08:04.4180726Z", "state": "succeeded", "results": { "documents": [ @@ -11318,31 +1831,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "14545a63-e37d-47fa-a702-216058ec44c1", + "apim-request-id": "6b3f7428-216c-4bc4-b5c9-9cac608e7555", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:05 GMT", + "Date": "Mon, 25 Oct 2021 21:08:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "216" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3081" }, "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": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:08:04Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -11353,8 +1872,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -11393,7 +1911,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -11406,8 +1924,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:07:59.2470203Z", "state": "succeeded", "results": { "documents": [ @@ -11488,65 +2005,39 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:07:58.6764018Z", "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 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "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 - } + "keyPhrases": [ + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:08:04.4180726Z", "state": "succeeded", "results": { "documents": [ @@ -11606,31 +2097,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "7d6e43c4-721d-45cb-b0ec-c8983f63fc3d", + "apim-request-id": "e902c074-ac2e-4e66-b725-b7c33d58fc48", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:06 GMT", + "Date": "Mon, 25 Oct 2021 21:08:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "350" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "362" }, "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": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:08:04Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -11641,8 +2138,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -11681,7 +2177,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -11694,8 +2190,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:07:59.2470203Z", "state": "succeeded", "results": { "documents": [ @@ -11776,65 +2271,39 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:07:58.6764018Z", "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 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "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 - } + "keyPhrases": [ + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:08:04.4180726Z", "state": "succeeded", "results": { "documents": [ @@ -11894,31 +2363,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d64f536a-9f24-4db0-be31-420992d7e668", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4acf6cf7-0fed-41bc-b8cd-013001b94864", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "64e9a862-5704-4139-b7e4-f01c68dd4db4", + "apim-request-id": "82f03b89-045d-435c-918d-42ba323ca3ca", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:07 GMT", + "Date": "Mon, 25 Oct 2021 21:08:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "292" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "392" }, "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": "4acf6cf7-0fed-41bc-b8cd-013001b94864", + "lastUpdateDateTime": "2021-10-25T21:08:20Z", + "createdDateTime": "2021-10-25T21:07:47Z", + "expirationDateTime": "2021-10-26T21:07:47Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", @@ -11929,8 +2404,7 @@ "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.6762076Z", - "taskName": "NamedEntityRecognition_latest", + "lastUpdateDateTime": "2021-10-25T21:07:57.4943879Z", "state": "succeeded", "results": { "documents": [ @@ -11969,7 +2443,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] @@ -11982,8 +2456,7 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:13.5624883Z", - "taskName": "EntityLinking_latest", + "lastUpdateDateTime": "2021-10-25T21:07:59.2470203Z", "state": "succeeded", "results": { "documents": [ @@ -12066,8 +2539,7 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:06.9224739Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:08:20.140432Z", "state": "succeeded", "results": { "documents": [ @@ -12108,7 +2580,7 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.96 + "confidenceScore": 0.95 } ], "warnings": [] @@ -12121,8 +2593,7 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:50:06.563776Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:07:58.6764018Z", "state": "succeeded", "results": { "documents": [ @@ -12138,7 +2609,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -12153,8 +2623,7 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:49:38.0462791Z", - "taskName": "SentimentAnalysis_latest", + "lastUpdateDateTime": "2021-10-25T21:08:04.4180726Z", "state": "succeeded", "results": { "documents": [ @@ -12217,6 +2686,6 @@ "Variables": { "RandomSeed": "1928146711", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPHIDomain.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPHIDomain.json index be46a16d667e..05da12639ad7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPHIDomain.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPHIDomain.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "320", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5dfdd19612d99f43a89650b89a5505f8-25e70a4234d18848-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-88b8153950aaa4478246fa9bf9f8fc9d-f73ccd378418cf4d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "cfe8e2f8ee3911d883f149c5ba708a25", "x-ms-return-client-request-id": "true" }, @@ -37,43 +43,49 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "71a99ec5-e403-43da-8d87-64aa1b510527", - "Date": "Fri, 06 Aug 2021 01:44:46 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/98bc881a-4213-4158-bf03-c8c6ec2fe47d", + "apim-request-id": "3912d284-d6de-48f6-a14d-c9d5a77e6edc", + "Date": "Mon, 25 Oct 2021 21:05:17 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/135a4a1e-ea37-43a7-a95a-4ff2805d304c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "219" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "230" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/98bc881a-4213-4158-bf03-c8c6ec2fe47d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/135a4a1e-ea37-43a7-a95a-4ff2805d304c", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "0af6547e6d21f99df5e133f9fb1abff6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74836995-bbcc-4d12-aabc-d2596b99b943", + "apim-request-id": "f60b00cf-6cdd-4ec5-8a68-b3bf93ff504f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:46 GMT", + "Date": "Mon, 25 Oct 2021 21:05:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "98bc881a-4213-4158-bf03-c8c6ec2fe47d", - "lastUpdateDateTime": "2021-08-06T01:44:46Z", - "createdDateTime": "2021-08-06T01:44:46Z", - "expirationDateTime": "2021-08-07T01:44:46Z", - "status": "notStarted", + "jobId": "135a4a1e-ea37-43a7-a95a-4ff2805d304c", + "lastUpdateDateTime": "2021-10-25T21:05:18Z", + "createdDateTime": "2021-10-25T21:05:17Z", + "expirationDateTime": "2021-10-26T21:05:17Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", "tasks": { @@ -85,31 +97,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/98bc881a-4213-4158-bf03-c8c6ec2fe47d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/135a4a1e-ea37-43a7-a95a-4ff2805d304c", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "1ffe04ae50f965a11f4bc1da8e14f022", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3645fd6-f12f-4162-bde5-bfb34f6918b7", + "apim-request-id": "672d37f1-c9fe-45fb-99f2-0f2f6ad8b0c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:47 GMT", + "Date": "Mon, 25 Oct 2021 21:05:19 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": "14" }, "ResponseBody": { - "jobId": "98bc881a-4213-4158-bf03-c8c6ec2fe47d", - "lastUpdateDateTime": "2021-08-06T01:44:47Z", - "createdDateTime": "2021-08-06T01:44:46Z", - "expirationDateTime": "2021-08-07T01:44:46Z", + "jobId": "135a4a1e-ea37-43a7-a95a-4ff2805d304c", + "lastUpdateDateTime": "2021-10-25T21:05:18Z", + "createdDateTime": "2021-10-25T21:05:17Z", + "expirationDateTime": "2021-10-26T21:05:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -122,31 +140,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/98bc881a-4213-4158-bf03-c8c6ec2fe47d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/135a4a1e-ea37-43a7-a95a-4ff2805d304c", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "1647a062e0a88b5844efda57badf1569", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "291af48b-6b92-4ff1-a4f9-82ac3e41d0f2", + "apim-request-id": "cbd16663-122b-4e99-8df7-8795f0792cf8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:48 GMT", + "Date": "Mon, 25 Oct 2021 21:05:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "98bc881a-4213-4158-bf03-c8c6ec2fe47d", - "lastUpdateDateTime": "2021-08-06T01:44:47Z", - "createdDateTime": "2021-08-06T01:44:46Z", - "expirationDateTime": "2021-08-07T01:44:46Z", + "jobId": "135a4a1e-ea37-43a7-a95a-4ff2805d304c", + "lastUpdateDateTime": "2021-10-25T21:05:18Z", + "createdDateTime": "2021-10-25T21:05:17Z", + "expirationDateTime": "2021-10-26T21:05:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -159,31 +183,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/98bc881a-4213-4158-bf03-c8c6ec2fe47d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/135a4a1e-ea37-43a7-a95a-4ff2805d304c", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "b61653316b722e2cb391ead5abc26ae0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2854c496-b11c-444c-8ced-a8e6e4f10045", + "apim-request-id": "3458fadf-c3e3-4f4d-856b-df3f6b2614a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:49 GMT", + "Date": "Mon, 25 Oct 2021 21:05:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { - "jobId": "98bc881a-4213-4158-bf03-c8c6ec2fe47d", - "lastUpdateDateTime": "2021-08-06T01:44:47Z", - "createdDateTime": "2021-08-06T01:44:46Z", - "expirationDateTime": "2021-08-07T01:44:46Z", + "jobId": "135a4a1e-ea37-43a7-a95a-4ff2805d304c", + "lastUpdateDateTime": "2021-10-25T21:05:18Z", + "createdDateTime": "2021-10-25T21:05:17Z", + "expirationDateTime": "2021-10-26T21:05:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -196,31 +226,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/98bc881a-4213-4158-bf03-c8c6ec2fe47d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/135a4a1e-ea37-43a7-a95a-4ff2805d304c", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "5a9611f1a9d2cd4dab72da09754aaa40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c72f209-81bd-4f21-872a-0cb2067b7f46", + "apim-request-id": "7023435e-7605-48fc-a765-0211a2e98a83", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:50 GMT", + "Date": "Mon, 25 Oct 2021 21:05:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "98bc881a-4213-4158-bf03-c8c6ec2fe47d", - "lastUpdateDateTime": "2021-08-06T01:44:47Z", - "createdDateTime": "2021-08-06T01:44:46Z", - "expirationDateTime": "2021-08-07T01:44:46Z", + "jobId": "135a4a1e-ea37-43a7-a95a-4ff2805d304c", + "lastUpdateDateTime": "2021-10-25T21:05:18Z", + "createdDateTime": "2021-10-25T21:05:17Z", + "expirationDateTime": "2021-10-26T21:05:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -233,31 +269,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/98bc881a-4213-4158-bf03-c8c6ec2fe47d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/135a4a1e-ea37-43a7-a95a-4ff2805d304c", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "3ba9583539fdf7af74196317f682e081", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5985879-fac9-4750-91d2-cb2139995984", + "apim-request-id": "b19fb477-a295-4be2-b1ab-1605e80bf718", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:51 GMT", + "Date": "Mon, 25 Oct 2021 21:05: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "98bc881a-4213-4158-bf03-c8c6ec2fe47d", - "lastUpdateDateTime": "2021-08-06T01:44:47Z", - "createdDateTime": "2021-08-06T01:44:46Z", - "expirationDateTime": "2021-08-07T01:44:46Z", + "jobId": "135a4a1e-ea37-43a7-a95a-4ff2805d304c", + "lastUpdateDateTime": "2021-10-25T21:05:18Z", + "createdDateTime": "2021-10-25T21:05:17Z", + "expirationDateTime": "2021-10-26T21:05:17Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -270,31 +312,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/98bc881a-4213-4158-bf03-c8c6ec2fe47d", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/135a4a1e-ea37-43a7-a95a-4ff2805d304c", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "a966f984bb48889605490aff9122b869", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7134ad29-3a6c-4d0a-888f-078f32cc89dd", + "apim-request-id": "beff3319-8f79-413b-8b22-a970f67b38e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:52 GMT", + "Date": "Mon, 25 Oct 2021 21:05:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "65" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { - "jobId": "98bc881a-4213-4158-bf03-c8c6ec2fe47d", - "lastUpdateDateTime": "2021-08-06T01:44:52Z", - "createdDateTime": "2021-08-06T01:44:46Z", - "expirationDateTime": "2021-08-07T01:44:46Z", + "jobId": "135a4a1e-ea37-43a7-a95a-4ff2805d304c", + "lastUpdateDateTime": "2021-10-25T21:05:25Z", + "createdDateTime": "2021-10-25T21:05:17Z", + "expirationDateTime": "2021-10-26T21:05:17Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -305,7 +353,7 @@ "total": 1, "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:52.7901475Z", + "lastUpdateDateTime": "2021-10-25T21:05:25.0899804Z", "state": "succeeded", "results": { "documents": [ @@ -343,6 +391,6 @@ "Variables": { "RandomSeed": "390387714", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..abe0be9b01d8 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-272a04cce40de4478a382dc7c67094a3-be5f72dabd350842-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "dbcf75b1d6cb24fdb41d742a5d142b0a", "x-ms-return-client-request-id": "true" }, @@ -37,42 +43,48 @@ }, "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": "6fddb1b7-2080-4a21-9a50-f8cac3370784", + "Date": "Mon, 25 Oct 2021 21:09:46 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88d2f819-f4dc-4374-b246-113e9fa96784", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "253" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1888" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88d2f819-f4dc-4374-b246-113e9fa96784", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "af0c4d13-b7d9-4f2a-9f16-a18776e82e22", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:17 GMT", + "Date": "Mon, 25 Oct 2021 21:09:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "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": "88d2f819-f4dc-4374-b246-113e9fa96784", + "lastUpdateDateTime": "2021-10-25T21:09:46Z", + "createdDateTime": "2021-10-25T21:09:44Z", + "expirationDateTime": "2021-10-26T21:09:44Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -85,32 +97,38 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88d2f819-f4dc-4374-b246-113e9fa96784", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "12f89f3c-96e6-410e-b914-c62695167370", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:18 GMT", + "Date": "Mon, 25 Oct 2021 21:09:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", - "status": "running", + "jobId": "88d2f819-f4dc-4374-b246-113e9fa96784", + "lastUpdateDateTime": "2021-10-25T21:09:46Z", + "createdDateTime": "2021-10-25T21:09:44Z", + "expirationDateTime": "2021-10-26T21:09:44Z", + "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", "tasks": { @@ -122,32 +140,38 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88d2f819-f4dc-4374-b246-113e9fa96784", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "75eabc37-1707-4920-8add-9455d7a6841a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:19 GMT", + "Date": "Mon, 25 Oct 2021 21:09:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "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", - "status": "running", + "jobId": "88d2f819-f4dc-4374-b246-113e9fa96784", + "lastUpdateDateTime": "2021-10-25T21:09:46Z", + "createdDateTime": "2021-10-25T21:09:44Z", + "expirationDateTime": "2021-10-26T21:09:44Z", + "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", "tasks": { @@ -159,32 +183,38 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88d2f819-f4dc-4374-b246-113e9fa96784", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "f55d4bfb-cf26-4cb5-8542-f091022ff2fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:20 GMT", + "Date": "Mon, 25 Oct 2021 21:09:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" }, "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", - "status": "running", + "jobId": "88d2f819-f4dc-4374-b246-113e9fa96784", + "lastUpdateDateTime": "2021-10-25T21:09:46Z", + "createdDateTime": "2021-10-25T21:09:44Z", + "expirationDateTime": "2021-10-26T21:09:44Z", + "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", "tasks": { @@ -196,31 +226,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88d2f819-f4dc-4374-b246-113e9fa96784", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "37636412-2024-43bf-9e79-fc4859a3c1d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:21 GMT", + "Date": "Mon, 25 Oct 2021 21:09:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "88d2f819-f4dc-4374-b246-113e9fa96784", + "lastUpdateDateTime": "2021-10-25T21:09:53Z", + "createdDateTime": "2021-10-25T21:09:44Z", + "expirationDateTime": "2021-10-26T21:09:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -233,31 +269,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88d2f819-f4dc-4374-b246-113e9fa96784", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "bc7bbc94-dcb3-4ccc-8b28-ebe74f53b7cb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:22 GMT", + "Date": "Mon, 25 Oct 2021 21:09:55 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": "16" }, "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": "88d2f819-f4dc-4374-b246-113e9fa96784", + "lastUpdateDateTime": "2021-10-25T21:09:53Z", + "createdDateTime": "2021-10-25T21:09:44Z", + "expirationDateTime": "2021-10-26T21:09:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -270,31 +312,80 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0b3776f4-e5d3-4162-8512-f00f820ceb6a", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88d2f819-f4dc-4374-b246-113e9fa96784", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "0d275f4f-68e5-4f61-bbea-dce9f072ca48", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:09:56 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": "88d2f819-f4dc-4374-b246-113e9fa96784", + "lastUpdateDateTime": "2021-10-25T21:09:53Z", + "createdDateTime": "2021-10-25T21:09:44Z", + "expirationDateTime": "2021-10-26T21:09:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithPHIDomain", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88d2f819-f4dc-4374-b246-113e9fa96784", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "fab77027-1190-4f3e-86be-a93feedaa21b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:23 GMT", + "Date": "Mon, 25 Oct 2021 21:09:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "131" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2331" }, "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": "88d2f819-f4dc-4374-b246-113e9fa96784", + "lastUpdateDateTime": "2021-10-25T21:09:57Z", + "createdDateTime": "2021-10-25T21:09:44Z", + "expirationDateTime": "2021-10-26T21:09:44Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPHIDomain", @@ -305,7 +396,7 @@ "total": 1, "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:23.4456959Z", + "lastUpdateDateTime": "2021-10-25T21:09:57.356919Z", "state": "succeeded", "results": { "documents": [ @@ -343,6 +434,6 @@ "Variables": { "RandomSeed": "1544755028", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..fdd94ccfd4eb 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-90f73da668f70745859314793139d577-561013c0d2008d45-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "5a3d6c2348d829c15de122829c1d2254", "x-ms-return-client-request-id": "true" }, @@ -144,43 +150,49 @@ }, "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": "8cf160ec-5410-46b8-951f-6da0f33574a9", + "Date": "Mon, 25 Oct 2021 21:05:03 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "634" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "641" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "c16ad2dd-ea7d-4a02-a21a-33b8b62aa32f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:36 GMT", + "Date": "Mon, 25 Oct 2021 21:05:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", - "status": "notStarted", + "jobId": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:04Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { @@ -192,31 +204,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "97ae0bcf-4393-4bb8-9ad8-fb71d74cd548", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:37 GMT", + "Date": "Mon, 25 Oct 2021 21:05: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": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:04Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -229,31 +247,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "5e59f5b1-86f1-43e7-a931-5235e1a15084", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:38 GMT", + "Date": "Mon, 25 Oct 2021 21:05:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "cef9c720-8c17-4977-92c5-3a42f9bca9f8", - "lastUpdateDateTime": "2021-08-06T01:44:36Z", - "createdDateTime": "2021-08-06T01:44:35Z", - "expirationDateTime": "2021-08-07T01:44:35Z", + "jobId": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:04Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -266,31 +290,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "31027f7b-3f18-4a37-a47f-cec7fc3bdb23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:39 GMT", + "Date": "Mon, 25 Oct 2021 21:05:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:04Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -303,31 +333,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "7244b04d-d97e-423e-8794-e71ea1bbff86", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:40 GMT", + "Date": "Mon, 25 Oct 2021 21:05:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "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": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:04Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -340,31 +376,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "1f9aa084-bccb-4ff4-84ee-d71d04c644a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:41 GMT", + "Date": "Mon, 25 Oct 2021 21:05: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "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": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:04Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -377,31 +419,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "02c23b46-bcf5-4c22-abf9-07ca082692b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:42 GMT", + "Date": "Mon, 25 Oct 2021 21:05:12 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": "23" }, "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": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:04Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -414,31 +462,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "b3a9f465-0443-4138-b74d-8348672c7a36", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:43 GMT", + "Date": "Mon, 25 Oct 2021 21:05:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:13Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -451,68 +505,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/cef9c720-8c17-4977-92c5-3a42f9bca9f8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44: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": "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", + "apim-request-id": "3fbcf2e4-ec02-47cd-9296-7e9605f61531", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:45 GMT", + "Date": "Mon, 25 Oct 2021 21:05:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "184" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "245" }, "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": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:14Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -523,8 +546,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:45.5707107Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:05:14.8692042Z", "state": "succeeded", "results": { "documents": [ @@ -735,35 +757,41 @@ } ] }, - "@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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189?$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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.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.20211025.1", + "(.NET Core 3.1.20; 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": "5fb3e752-b25b-46c4-8da0-c2b7e32b4f3e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:45 GMT", + "Date": "Mon, 25 Oct 2021 21:05:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "191" }, "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": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:14Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -774,8 +802,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:45.5707107Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:05:14.8692042Z", "state": "succeeded", "results": { "documents": [ @@ -819,31 +846,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/88a3d31e-e85e-4fd6-99cb-afbe664d8189?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.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.20211025.1", + "(.NET Core 3.1.20; 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": "7e96f202-4df1-4438-af73-bfdd1526fdb9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:45 GMT", + "Date": "Mon, 25 Oct 2021 21:05:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "273" }, "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": "88a3d31e-e85e-4fd6-99cb-afbe664d8189", + "lastUpdateDateTime": "2021-10-25T21:05:14Z", + "createdDateTime": "2021-10-25T21:05:03Z", + "expirationDateTime": "2021-10-26T21:05:03Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -854,8 +887,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:44:45.5707107Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:05:14.8692042Z", "state": "succeeded", "results": { "documents": [ @@ -902,6 +934,6 @@ "Variables": { "RandomSeed": "275027038", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..dbd3dffd6ff9 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-8b64539bf10ce249a9b5864b0c50d169-10721064c2e35d41-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "21ac64e10f1baa75d580bbe74a8c1d32", "x-ms-return-client-request-id": "true" }, @@ -144,1376 +150,49 @@ }, "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": "793359ca-9392-4bc9-901e-3d58cf2e3b9d", + "Date": "Mon, 25 Oct 2021 21:08:30 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1057" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9358" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "d4e96416-cba0-4717-9804-0f2f7bab80a0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:09 GMT", + "Date": "Mon, 25 Oct 2021 21:08:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - }, - "ResponseBody": { - "jobId": "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" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "214" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:30Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", + "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { @@ -1525,31 +204,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "df430acb47171890c2a583232bba976a", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "a6bdfe92-8253-462d-8d5d-cde2ca096781", + "apim-request-id": "1446ff5c-38f2-479d-afd6-ad877845901e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:48 GMT", + "Date": "Mon, 25 Oct 2021 21:08:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1562,31 +247,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bb15b8285678324beb652679ccb887a2", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "cebeab92-df0f-415e-b386-1a46d67ac3b4", + "apim-request-id": "a0522310-70d8-466d-8754-464da75ce1b7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:49 GMT", + "Date": "Mon, 25 Oct 2021 21:08: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": "93" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1599,31 +290,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9abefa9c279c63dddeec182ba1ecdf9e", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "cd4543e3-fceb-48cf-966a-7ba2c038e5dd", + "apim-request-id": "e1ff2a74-8e61-486e-8e7a-b345a50b67fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:50 GMT", + "Date": "Mon, 25 Oct 2021 21:08:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1636,31 +333,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c88b1d170d227464bf11f3b121174c09", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "fb7a6448-ab6c-410d-bfc7-0beca39654a2", + "apim-request-id": "deda65ca-9260-4a05-ad66-63d29d9fa7c7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:51 GMT", + "Date": "Mon, 25 Oct 2021 21:08:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1673,31 +376,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3186e11efdfb01cedbb1dc8b3e2090ff", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "5410bd88-19a7-4b40-a5fc-013c46f4414d", + "apim-request-id": "171ad52b-923b-4f51-9681-97f668d9ee42", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:52 GMT", + "Date": "Mon, 25 Oct 2021 21:08:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1710,31 +419,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "af618886be2c8e7f9549da8b332c42c7", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "1dde84bf-3768-4e1e-8c89-d8920aadc832", + "apim-request-id": "8e60e1b3-4bf1-4398-89cd-735834c71905", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:53 GMT", + "Date": "Mon, 25 Oct 2021 21:08:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-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", + "jobId": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1747,68 +462,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c00c0ea0ae651aa24f8aed7130d8369f", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "3765f250-5327-4424-85fb-a50588a30523", + "apim-request-id": "66b62b77-a109-4cf8-b9e9-421aa45883ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:54 GMT", + "Date": "Mon, 25 Oct 2021 21:08:40 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": "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", + "jobId": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1821,31 +505,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2fea156fd013d79ae54760a2d10e5dbd", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "852b055b-7d40-4f12-b174-ae75024c8363", + "apim-request-id": "de38b6f9-87fd-42d0-8ad9-0386568e4230", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:56 GMT", + "Date": "Mon, 25 Oct 2021 21:08:41 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": "16" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1858,31 +548,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3f0a3b12a901031131ad5f6c12f0f70c", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "fc65e411-7fb0-4068-a55e-a361f88b66cb", + "apim-request-id": "db7c6d0a-1032-4c81-a8d0-264141ba4e51", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:57 GMT", + "Date": "Mon, 25 Oct 2021 21:08: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2840" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1895,31 +591,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1b013ebd06edb08c5953b36d3c3a8d52", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "1ba61851-48b3-47f3-9fae-54be185a84f8", + "apim-request-id": "5fd52b93-8f71-4953-b89e-ade277fbf003", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:58 GMT", + "Date": "Mon, 25 Oct 2021 21:08: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "276" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1932,31 +634,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e79fde9a8e37c6ad03e7fe65702dc5f4", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "a13395b9-9058-4129-babf-c340570ac053", + "apim-request-id": "84523c89-2b0f-4549-996b-3f9678be23b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:50:59 GMT", + "Date": "Mon, 25 Oct 2021 21:08: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-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", + "jobId": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -1969,31 +677,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "92e55450420d0ccfaf5ae5adf5a3c7f6", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "f218d10d-6397-42b4-88bf-4c0cb90f0287", + "apim-request-id": "618bc948-b688-4c0c-885d-e13fb19324d6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:00 GMT", + "Date": "Mon, 25 Oct 2021 21:08:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2006,31 +720,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "34d20d1f0f512fd4913a170608263f2c", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "8b634162-8322-48fa-b142-9719977c19b2", + "apim-request-id": "eee70039-c96f-463e-901a-d3a8b0e5e9ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:01 GMT", + "Date": "Mon, 25 Oct 2021 21:08:52 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": "68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", - "lastUpdateDateTime": "2021-08-06T01:50:09Z", - "createdDateTime": "2021-08-06T01:50:08Z", - "expirationDateTime": "2021-08-07T01:50:08Z", + "jobId": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2043,31 +763,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e81dbf8efa5558440f9338dda8ffd15f", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "968870ce-3d34-49d1-acf9-acf2c3fc9b50", + "apim-request-id": "d8262630-35cf-4d00-b487-2fd9f0d436ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:02 GMT", + "Date": "Mon, 25 Oct 2021 21:08:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "131" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2080,31 +806,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "62450720905b41a37fb601d22ac80488", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "a00c8b79-37f3-4b92-a89b-40b74064a0c8", + "apim-request-id": "66aa08b2-66c7-4145-b412-f40a284a0b62", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:04 GMT", + "Date": "Mon, 25 Oct 2021 21:08:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "92" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2117,31 +849,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "351fb91ade8625a1c87925bed6f78692", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "9b70638b-3a27-4925-8773-ab72164e80ba", + "apim-request-id": "8df4df20-f1eb-4ebb-b97d-0c072c96f317", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:05 GMT", + "Date": "Mon, 25 Oct 2021 21:09:00 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": "109" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2154,31 +892,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "00e6b769dde0fdd01cdc689ff9722d46", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "8669e66f-4f44-41ad-b7d0-dd1a1d1a6665", + "apim-request-id": "0420d8a1-8b08-407e-8cde-002de44166c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:06 GMT", + "Date": "Mon, 25 Oct 2021 21:09: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": "19" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2191,31 +935,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "ea151dbf-0757-4e09-b5ac-8fb44d020f1e", + "apim-request-id": "a3c79920-fe49-409b-9547-3dffe3ac260d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:07 GMT", + "Date": "Mon, 25 Oct 2021 21:09: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "313" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2228,31 +978,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "72686e2f03e23da8e92219aa75012b56", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "d887c739-664b-4d5c-955c-c683672a41f9", + "apim-request-id": "cf588029-e5b9-498d-a072-00026f38003f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:08 GMT", + "Date": "Mon, 25 Oct 2021 21:09:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2265,31 +1021,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "262fde4c9834ceb2dea499bf42ee9137", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "db6e8473-252d-460d-b41c-72b408bc16c6", + "apim-request-id": "de9954bc-0ff9-4730-84ee-2614d9ba6530", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:09 GMT", + "Date": "Mon, 25 Oct 2021 21:09:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-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", + "jobId": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2302,31 +1064,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "67dd1476-6814-4e86-915b-fb542ee98ac6", + "apim-request-id": "86f16353-261f-4446-979b-f1ac00013d23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:10 GMT", + "Date": "Mon, 25 Oct 2021 21:09:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2250" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2339,31 +1107,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "170101cb-3140-4b5b-96da-af7598c92c41", + "apim-request-id": "aeff1d40-2772-4462-ad98-5113a0bea8d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:11 GMT", + "Date": "Mon, 25 Oct 2021 21:09: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": "41" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:08:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2376,31 +1150,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "5a504700-44d2-43e8-bb33-7a5bcad79e19", + "apim-request-id": "e669c8b6-899d-44bf-9e6b-aeb9b9dcc2ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:12 GMT", + "Date": "Mon, 25 Oct 2021 21:09:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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", + "jobId": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:09:20Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2413,31 +1193,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "94bd5c64-43dc-4459-8751-05914f3b1c11", + "apim-request-id": "f0e140f3-41aa-4af3-ae37-bc460f220335", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:13 GMT", + "Date": "Mon, 25 Oct 2021 21:09: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": "5879" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:09:32Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2450,31 +1236,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "5ff1b174-848b-4916-9d5b-25d61e9fc742", + "apim-request-id": "bd25dfc9-a479-4a83-94c6-65d1f085a2d9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:14 GMT", + "Date": "Mon, 25 Oct 2021 21:09: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": "12" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:09:36Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2487,31 +1279,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "011649b0-3019-4796-ab73-faa8524758b9", + "apim-request-id": "56ad956c-ab73-4385-a398-93a178f52a17", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:15 GMT", + "Date": "Mon, 25 Oct 2021 21:09:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "182" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:09:36Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2524,31 +1322,37 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/68e0ab49-d4cc-4e9d-a1f9-5e3fa5b73e02", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7", "RequestMethod": "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 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.20211025.1", + "(.NET Core 3.1.20; 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": "629388d8-ad75-4379-8fa2-3db2538986bf", + "apim-request-id": "46420c13-1f70-4429-9032-486638b59271", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:16 GMT", + "Date": "Mon, 25 Oct 2021 21:09:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "329" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "451" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:09:39Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2559,8 +1363,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:16.1632865Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:09:39.7113958Z", "state": "succeeded", "results": { "documents": [ @@ -2771,35 +1574,41 @@ } ] }, - "@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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7?$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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.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.20211025.1", + "(.NET Core 3.1.20; 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": "38494f8d-81bf-4d98-8103-03dd4208977c", + "apim-request-id": "d015f892-f8f9-4c96-b1b5-e4a5cb9c94e5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:16 GMT", + "Date": "Mon, 25 Oct 2021 21:09:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "74" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "89" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:09:39Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2810,8 +1619,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:16.1632865Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:09:39.7113958Z", "state": "succeeded", "results": { "documents": [ @@ -2855,31 +1663,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e457d46e-2e88-439f-9b20-f16aef5b7ce7?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.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.20211025.1", + "(.NET Core 3.1.20; 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": "e763b119-8df9-47b6-92fa-0bc402d64213", + "apim-request-id": "602f49a7-0d48-4a46-9b08-c887b370d7e3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:16 GMT", + "Date": "Mon, 25 Oct 2021 21:09:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "246" }, "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": "e457d46e-2e88-439f-9b20-f16aef5b7ce7", + "lastUpdateDateTime": "2021-10-25T21:09:39Z", + "createdDateTime": "2021-10-25T21:08:21Z", + "expirationDateTime": "2021-10-26T21:08:21Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", @@ -2890,8 +1704,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:16.1632865Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:09:39.7113958Z", "state": "succeeded", "results": { "documents": [ @@ -2938,6 +1751,6 @@ "Variables": { "RandomSeed": "24609339", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategories.json index b6278a1ae94d..10ebc5e31520 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategories.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "328", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b63691be70268c45bf70daff4ce9f453-50452f6b53517444-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-549a27ffb71f4047aaedb32978da2232-c8c95c2de5005a43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "1945c414c8d0214218f422447fc26906", "x-ms-return-client-request-id": "true" }, @@ -38,45 +44,50 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9cbb6ae3-d73d-473a-9d1a-b2bcc75b7f35", - "Date": "Fri, 06 Aug 2021 01:44:52 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", + "apim-request-id": "84c2b290-799f-464d-9645-e951430579f0", + "Date": "Mon, 25 Oct 2021 21:05:26 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/415076cc-83c7-4174-8781-8c99f6edad48", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "177" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "232" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/415076cc-83c7-4174-8781-8c99f6edad48", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "d5ed9f7c29b99e5a59c9017ada6e4b30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e3b16eff-d6d9-4fa9-afc6-12d025d81017", + "apim-request-id": "8dab8292-3bd1-456e-a319-0710ad9ae60f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:52 GMT", + "Date": "Mon, 25 Oct 2021 21:05: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "lastUpdateDateTime": "2021-08-06T01:44:53Z", - "createdDateTime": "2021-08-06T01:44:53Z", - "expirationDateTime": "2021-08-07T01:44:53Z", - "status": "notStarted", + "jobId": "415076cc-83c7-4174-8781-8c99f6edad48", + "lastUpdateDateTime": "2021-10-25T21:05:27Z", + "createdDateTime": "2021-10-25T21:05:26Z", + "expirationDateTime": "2021-10-26T21:05:26Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -86,34 +97,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/415076cc-83c7-4174-8781-8c99f6edad48", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "0deca93c3e3c1d92798cfe90bfcfa237", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42239396-484e-46ff-8b85-19c2a13fa429", + "apim-request-id": "677f9a01-2823-4d40-a279-87af0f38a343", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:54 GMT", + "Date": "Mon, 25 Oct 2021 21:05:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { - "jobId": "e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "lastUpdateDateTime": "2021-08-06T01:44:53Z", - "createdDateTime": "2021-08-06T01:44:53Z", - "expirationDateTime": "2021-08-07T01:44:53Z", + "jobId": "415076cc-83c7-4174-8781-8c99f6edad48", + "lastUpdateDateTime": "2021-10-25T21:05:28Z", + "createdDateTime": "2021-10-25T21:05:26Z", + "expirationDateTime": "2021-10-26T21:05:26Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -123,219 +139,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/415076cc-83c7-4174-8781-8c99f6edad48", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "dec0a3dfed6cea0b69a7bf06c7c746aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d796592-89ea-4428-acca-055f837551e8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "jobId": "e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "lastUpdateDateTime": "2021-08-06T01:44:53Z", - "createdDateTime": "2021-08-06T01:44:53Z", - "expirationDateTime": "2021-08-07T01:44:53Z", - "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/e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d507f2a85bd63ec90cd05c2d2ac9de8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "92007716-2ca4-4ad0-aea6-e706ccfd1381", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01: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" - }, - "ResponseBody": { - "jobId": "e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "lastUpdateDateTime": "2021-08-06T01:44:53Z", - "createdDateTime": "2021-08-06T01:44:53Z", - "expirationDateTime": "2021-08-07T01:44:53Z", - "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/e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "369bc9276dad4ec49d01a4947e8c55b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e4ea8fdd-c94d-4153-8927-dfd250bbc061", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44: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": "e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "lastUpdateDateTime": "2021-08-06T01:44:53Z", - "createdDateTime": "2021-08-06T01:44:53Z", - "expirationDateTime": "2021-08-07T01:44:53Z", - "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/e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cde85445ccc78460d982d19b91debf9f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0f62ddf2-a9c5-418a-9ae7-89f7a3707769", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:44: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": "e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "lastUpdateDateTime": "2021-08-06T01:44:53Z", - "createdDateTime": "2021-08-06T01:44:53Z", - "expirationDateTime": "2021-08-07T01:44:53Z", - "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/e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fddf35c9102b3bfc2eb937d5b734bf80", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "055b469a-b9a9-4957-9aca-5deffc4c2d70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01: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" - }, - "ResponseBody": { - "jobId": "e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "lastUpdateDateTime": "2021-08-06T01:44:53Z", - "createdDateTime": "2021-08-06T01:44:53Z", - "expirationDateTime": "2021-08-07T01:44:53Z", - "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/e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d6e7aa7b11e15ac269175c2a9b28bcbf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b7c4ec86-d4cc-4499-8262-35e7e97543a6", + "apim-request-id": "4d912925-49c4-44b1-a76e-a1f85577eac2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:00 GMT", + "Date": "Mon, 25 Oct 2021 21:05:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { - "jobId": "e6f08afd-2116-49ad-ab8e-a4e9bd020bc6", - "lastUpdateDateTime": "2021-08-06T01:45:00Z", - "createdDateTime": "2021-08-06T01:44:53Z", - "expirationDateTime": "2021-08-07T01:44:53Z", + "jobId": "415076cc-83c7-4174-8781-8c99f6edad48", + "lastUpdateDateTime": "2021-10-25T21:05:28Z", + "createdDateTime": "2021-10-25T21:05:26Z", + "expirationDateTime": "2021-10-26T21:05:26Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -343,8 +179,7 @@ "total": 1, "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:00.340659Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:05:28.9494864Z", "state": "succeeded", "results": { "documents": [ @@ -375,6 +210,6 @@ "Variables": { "RandomSeed": "1156890369", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..201082ce6cd8 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-76f4982a2b963e43b8655244edf99ade-cf1091cd8b781b4c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "32c323d944ebc101cfef406c61f44cba", "x-ms-return-client-request-id": "true" }, @@ -38,45 +44,50 @@ }, "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": "48cc5244-dfac-417e-8150-46d4f04f0e5a", + "Date": "Mon, 25 Oct 2021 21:10:01 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/629fc9ee-0233-4ecb-8811-5cc2f7f00860", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "261" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "574" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/629fc9ee-0233-4ecb-8811-5cc2f7f00860", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "2a1b590f-162c-46ef-94ad-c0f734e3faae", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:24 GMT", + "Date": "Mon, 25 Oct 2021 21:10:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "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", - "status": "notStarted", + "jobId": "629fc9ee-0233-4ecb-8811-5cc2f7f00860", + "lastUpdateDateTime": "2021-10-25T21:10:01Z", + "createdDateTime": "2021-10-25T21:10:00Z", + "expirationDateTime": "2021-10-26T21:10:00Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -86,34 +97,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/629fc9ee-0233-4ecb-8811-5cc2f7f00860", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "1a831c19-8aca-40c7-87fd-898d6238e7c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:25 GMT", + "Date": "Mon, 25 Oct 2021 21:10: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": "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", + "jobId": "629fc9ee-0233-4ecb-8811-5cc2f7f00860", + "lastUpdateDateTime": "2021-10-25T21:10:01Z", + "createdDateTime": "2021-10-25T21:10:00Z", + "expirationDateTime": "2021-10-26T21:10:00Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -123,34 +139,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/629fc9ee-0233-4ecb-8811-5cc2f7f00860", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "1003bebb-f883-492f-8d3a-b9da89387ba2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:26 GMT", + "Date": "Mon, 25 Oct 2021 21:10:04 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": "113" }, "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": "629fc9ee-0233-4ecb-8811-5cc2f7f00860", + "lastUpdateDateTime": "2021-10-25T21:10:01Z", + "createdDateTime": "2021-10-25T21:10:00Z", + "expirationDateTime": "2021-10-26T21:10:00Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -160,219 +181,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7b4bb16b-7115-4e92-97ba-38fdb0a05028", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/629fc9ee-0233-4ecb-8811-5cc2f7f00860", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:28 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", - "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": "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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2003cb60-f5e3-465f-a69f-dfdb9303feda", + "apim-request-id": "e9f2c556-0b23-432d-a279-1a378d8462ef", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:32 GMT", + "Date": "Mon, 25 Oct 2021 21:10:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "459" }, "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": "629fc9ee-0233-4ecb-8811-5cc2f7f00860", + "lastUpdateDateTime": "2021-10-25T21:10:05Z", + "createdDateTime": "2021-10-25T21:10:00Z", + "expirationDateTime": "2021-10-26T21:10:00Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -380,8 +221,7 @@ "total": 1, "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:51:32.1743272Z", - "taskName": "PersonallyIdentifiableInformation_latest", + "lastUpdateDateTime": "2021-10-25T21:10:05.4785563Z", "state": "succeeded", "results": { "documents": [ @@ -412,6 +252,6 @@ "Variables": { "RandomSeed": "1393333091", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..fb75caa71e16 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-bbf26565acd497449d9653e0d8fce0a2-9b54d72d6ee59844-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "7113589c3007a78af3272be840001637", "x-ms-return-client-request-id": "true" }, @@ -44,43 +50,49 @@ }, "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": "6d4ee155-7c53-47f7-80b2-04352f9fdcf4", + "Date": "Mon, 25 Oct 2021 21:05:30 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a45b9092-465c-45e5-8d8c-b6f0ed9a8815", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "205" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "191" }, "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a45b9092-465c-45e5-8d8c-b6f0ed9a8815?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "c5b6a40e-06b6-4719-9d6e-2c639235bced", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:01 GMT", + "Date": "Mon, 25 Oct 2021 21:05:30 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": "26" }, "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": "a45b9092-465c-45e5-8d8c-b6f0ed9a8815", + "lastUpdateDateTime": "2021-10-25T21:05:30Z", + "createdDateTime": "2021-10-25T21:05:30Z", + "expirationDateTime": "2021-10-26T21:05:30Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { @@ -92,31 +104,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a45b9092-465c-45e5-8d8c-b6f0ed9a8815?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "5a906cdd-1e47-4fdc-b07c-e814b0a9099e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:02 GMT", + "Date": "Mon, 25 Oct 2021 21:05: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": "7" }, "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": "a45b9092-465c-45e5-8d8c-b6f0ed9a8815", + "lastUpdateDateTime": "2021-10-25T21:05:30Z", + "createdDateTime": "2021-10-25T21:05:30Z", + "expirationDateTime": "2021-10-26T21:05:30Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -129,31 +147,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a45b9092-465c-45e5-8d8c-b6f0ed9a8815?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "6db39f86-e3b0-4153-8446-b702a1b7b663", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:03 GMT", + "Date": "Mon, 25 Oct 2021 21:05: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": "6" }, "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": "a45b9092-465c-45e5-8d8c-b6f0ed9a8815", + "lastUpdateDateTime": "2021-10-25T21:05:30Z", + "createdDateTime": "2021-10-25T21:05:30Z", + "expirationDateTime": "2021-10-26T21:05:30Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -166,31 +190,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a45b9092-465c-45e5-8d8c-b6f0ed9a8815?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "4ca602c2-0fc2-470f-af53-9e522df4f6bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:04 GMT", + "Date": "Mon, 25 Oct 2021 21:05:34 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": "26" }, "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": "a45b9092-465c-45e5-8d8c-b6f0ed9a8815", + "lastUpdateDateTime": "2021-10-25T21:05:30Z", + "createdDateTime": "2021-10-25T21:05:30Z", + "expirationDateTime": "2021-10-26T21:05:30Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -203,31 +233,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a45b9092-465c-45e5-8d8c-b6f0ed9a8815?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "20ce8a1c-8a6e-4313-b995-6450f1842a40", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:05 GMT", + "Date": "Mon, 25 Oct 2021 21:05:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "a45b9092-465c-45e5-8d8c-b6f0ed9a8815", + "lastUpdateDateTime": "2021-10-25T21:05:30Z", + "createdDateTime": "2021-10-25T21:05:30Z", + "expirationDateTime": "2021-10-26T21:05:30Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -240,31 +276,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a45b9092-465c-45e5-8d8c-b6f0ed9a8815?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "5f5a0603-e094-489c-be62-c6c3eec0d70d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:06 GMT", + "Date": "Mon, 25 Oct 2021 21:05:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "265" }, "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": "a45b9092-465c-45e5-8d8c-b6f0ed9a8815", + "lastUpdateDateTime": "2021-10-25T21:05:30Z", + "createdDateTime": "2021-10-25T21:05:30Z", + "expirationDateTime": "2021-10-26T21:05:30Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -277,68 +319,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a45b9092-465c-45e5-8d8c-b6f0ed9a8815?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45: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": "f7bbb119-0652-4c09-8153-938b12560b23", - "lastUpdateDateTime": "2021-08-06T01:45:01Z", - "createdDateTime": "2021-08-06T01:45:01Z", - "expirationDateTime": "2021-08-07T01:45:01Z", - "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/f7bbb119-0652-4c09-8153-938b12560b23?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": "519bd2b72539bda5ba8debdc46da12e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7a88890d-57c4-4a6a-bed5-c5058549ca76", + "apim-request-id": "3a4b59e2-8403-424e-922f-3d8803e2671d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:45:08 GMT", + "Date": "Mon, 25 Oct 2021 21:05:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "290" }, "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": "a45b9092-465c-45e5-8d8c-b6f0ed9a8815", + "lastUpdateDateTime": "2021-10-25T21:05:38Z", + "createdDateTime": "2021-10-25T21:05:30Z", + "expirationDateTime": "2021-10-26T21:05:30Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationTest", @@ -349,8 +360,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:45:08.2672423Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:05:38.2161918Z", "state": "succeeded", "results": { "statistics": { @@ -376,7 +386,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -412,6 +421,6 @@ "Variables": { "RandomSeed": "267372785", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..fa67cbf26275 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-d4a186a207726247b654be2f8f10f8cd-5aad172f3218c04e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "2542d8e9f699af8c456bc28823041414", "x-ms-return-client-request-id": "true" }, @@ -44,43 +50,49 @@ }, "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": "8a450ca0-b071-4599-9f5f-eca9d7bc4f38", + "Date": "Mon, 25 Oct 2021 21:12:57 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "260" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "208" }, "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "85492115-cef8-4cf2-b0d6-aef05804e445", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:32 GMT", + "Date": "Mon, 25 Oct 2021 21:12:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "69" }, "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", + "jobId": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { @@ -92,32 +104,38 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "321c2b77-eff9-4b1a-899b-0c4e6a8ea362", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:34 GMT", + "Date": "Mon, 25 Oct 2021 21:12:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" }, "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", + "jobId": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { @@ -129,31 +147,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "302fcdfb-23ff-4221-ab00-7a877f9b908e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:35 GMT", + "Date": "Mon, 25 Oct 2021 21:13:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", + "jobId": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -166,31 +190,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "cf8f2c4a-4339-4b4b-a7ef-0c071a6ecc4e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:36 GMT", + "Date": "Mon, 25 Oct 2021 21:13:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" }, "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": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -203,31 +233,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "3f9bac55-3a01-42fd-bcc3-d0a006c83c7a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:37 GMT", + "Date": "Mon, 25 Oct 2021 21:13:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -240,31 +276,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "513e0264-7e84-4244-b92d-b4c10ec43be7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:38 GMT", + "Date": "Mon, 25 Oct 2021 21:13:05 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": "21" }, "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": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -277,31 +319,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "59cc44d2-5609-48dd-9d10-78557c3bea39", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:39 GMT", + "Date": "Mon, 25 Oct 2021 21:13:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -314,31 +362,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "34e1f9ff-3e89-4540-a9e6-160ec2c8bc2a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:40 GMT", + "Date": "Mon, 25 Oct 2021 21:13:07 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", + "jobId": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -351,31 +405,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "cbbba335-0210-4c94-a99a-e70faae88a98", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:41 GMT", + "Date": "Mon, 25 Oct 2021 21:13: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": "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", + "jobId": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -388,31 +448,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "a0fc7d56-f533-4f43-9570-1ebd74531ec8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:42 GMT", + "Date": "Mon, 25 Oct 2021 21:13:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -425,31 +491,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "22504a6e-6c94-4a6e-b906-8393554212ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:43 GMT", + "Date": "Mon, 25 Oct 2021 21:13:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", + "jobId": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -462,31 +534,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "ecd841b6-e584-4974-95b1-22a62fb8ce16", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:44 GMT", + "Date": "Mon, 25 Oct 2021 21:13:12 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": "db623b2a-ab90-49f1-ba6e-8195587bbeaa", - "lastUpdateDateTime": "2021-08-06T01:51:34Z", - "createdDateTime": "2021-08-06T01:51:33Z", - "expirationDateTime": "2021-08-07T01:51:33Z", + "jobId": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -499,31 +577,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "d05a6d15-7760-49bd-a3b1-2c244e625a0d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:45 GMT", + "Date": "Mon, 25 Oct 2021 21:13: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": "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", + "jobId": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -536,31 +620,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "d9bd510b-1f4b-4800-a86a-e6781c527239", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:51:46 GMT", + "Date": "Mon, 25 Oct 2021 21:13:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "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", + "jobId": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:12:58Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", @@ -573,1844 +663,37 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e2a734cd-802a-4622-a17c-7bf9e5ce0a4a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "afb28527-7d2b-4d6d-b2c5-d780717391a4", + "apim-request-id": "ef271d65-06c8-47ca-ab48-0a3fb3ffc259", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:39 GMT", + "Date": "Mon, 25 Oct 2021 21:13:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { - "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": "e2a734cd-802a-4622-a17c-7bf9e5ce0a4a", + "lastUpdateDateTime": "2021-10-25T21:13:15Z", + "createdDateTime": "2021-10-25T21:12:57Z", + "expirationDateTime": "2021-10-26T21:12:57Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationTest", @@ -2421,8 +704,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-08-06T01:52:39.0570658Z", - "taskName": "KeyPhraseExtraction_latest", + "lastUpdateDateTime": "2021-10-25T21:13:15.3628347Z", "state": "succeeded", "results": { "statistics": { @@ -2448,7 +730,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -2484,6 +765,6 @@ "Variables": { "RandomSeed": "1456992479", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json index a3ff9db05f31..b3fcecd7b7a7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-abad52dddb7b0f4190d9c879a933af85-c66f925e44b8a041-00", + "traceparent": "00-aaf989ab2b8c5d46aad5ae14001600bc-3718e0352079d340-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "7fbb9dea32b8080ffdad856789b2330d", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "316c9dd8-8930-4196-91a0-daa89d42656e", + "apim-request-id": "e95be2c4-9e3b-4dc4-9cf4-c62c0116acd3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:25 GMT", + "Date": "Mon, 25 Oct 2021 21:13:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "508530765", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index d82db1f2a6fb..19988b817fad 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c7e80ee54217804da9e6fc66c24a93a8-714c965f0b1f1541-00", + "traceparent": "00-f789def9a1480340934f6d9e03071c3c-4a183c9a373f9841-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "9ce6282fe98018f1ea732ad3ecd9e59c", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f419396a-4af3-4e8a-9f31-f9db8b772760", + "apim-request-id": "bf37077e-2863-4814-9fab-3ba931314269", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:34 GMT", + "Date": "Mon, 25 Oct 2021 21:13:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "172625245", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index 4362d44187a2..90f6845b4b82 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-517bc91b1072e940ab5fba994268bde0-4c9864349b422248-00", + "traceparent": "00-d514bdb893fd9f4aa4c73eab34258563-6b214688849c2f43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "119c99db1e02c34777426e77d5c75cb6", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cea80b0d-4b06-41ed-aab1-a549342d17c8", + "apim-request-id": "39bb0bcf-ac09-4e9b-8216-218c586420c3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:25 GMT", + "Date": "Mon, 25 Oct 2021 21:13:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1081025872", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index f77250195200..2564d3b8962a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c11b967f1efdc643b6abbb6626734114-4ac0d2480f73614f-00", + "traceparent": "00-0e66cc57e6e43b49a7db8737f545c655-f8d725e3aba59c42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "9d1067da67ede0f99771b2c8070f5079", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "616b0ca7-f3cc-4337-9cc0-ce8b8f653a80", + "apim-request-id": "0751fa01-73fa-438d-bd7f-2fb75c3e991f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:34 GMT", + "Date": "Mon, 25 Oct 2021 21:13:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "353364953", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index d9a599b3b639..9c1e9514d2c5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c69f213aeb7c2c4789b7420a24da4a76-3bf896166833cc43-00", + "traceparent": "00-7c225805ee007140a23269ad678c73b7-4ceca83be90bdf47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "86b79e2f0559eb97f25b1c5b233a68dd", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca033168-e66d-40e8-9d77-4e310ac553ef", + "apim-request-id": "36266a57-b409-480f-8940-be52fb38e6a1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:25 GMT", + "Date": "Mon, 25 Oct 2021 21:13:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1844243829", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index 09be55d4a0be..a2bb6e680660 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bf532a8ad0290649a5240be5fbafd9d8-0d7820127bb8a74b-00", + "traceparent": "00-7a46c63bf55edc48a2d2780a9f95499a-bd05a256f821d44c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "300adb4a8ab9aa03c50b104c35b7e035", "x-ms-return-client-request-id": "true" @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b46b1b2c-8215-4602-9f64-03f4fca39420", + "apim-request-id": "0f7609d9-9c3c-40ba-98f5-f4a41cc8da11", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:34 GMT", + "Date": "Mon, 25 Oct 2021 21:13:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "413540855", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index 7cd039b46824..df14c1f9578c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ae7452d4a5425348b8829c213e199234-4220d06a45b7ae46-00", + "traceparent": "00-56c3cb10f5134a468f6891897ed2f6c9-74eb059ed8604947-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "abe848a0b41107615847f9d88e292402", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e81656e8-68d6-41b1-85eb-704551ad68a7", + "apim-request-id": "15096d6e-315b-4414-93db-32350656d6fb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:25 GMT", + "Date": "Mon, 25 Oct 2021 21:13:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1867949087", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index 909864cf962d..157560de45d9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-757833adb63e68408ad8726a5d172fd0-2bfee98cd043c249-00", + "traceparent": "00-ec93a7eba2bd5645a67a155347e9abec-bf20a9e4bd1dc045-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "e76a4622dec6c96d7ae12bfd307d2c70", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86ec949e-e24e-46b4-b04f-c0c8506050b6", + "apim-request-id": "4ae93926-be50-4881-b761-866ed789f7a8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:34 GMT", + "Date": "Mon, 25 Oct 2021 21:13:50 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": "94" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1600068101", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index 569a29c070ef..d83577fc7fe4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cc751e532e60be44b901141e7a7625b7-5b764ae7ce04f341-00", + "traceparent": "00-23655f7fe809054db8b3ed24c1e9713a-ebe282a53dca0045-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "ddaaf35e96b9dae8e520d1e25db41ef1", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ea4fa29-dcde-4af1-bfa1-755c138d5ae9", + "apim-request-id": "b5d2053e-4f71-4dd0-bcab-df27f00e50eb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:26 GMT", + "Date": "Mon, 25 Oct 2021 21:13:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-envoy-upstream-service-time": "171" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1265629352", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index fc2cbb0abe0f..ed4f8be0e259 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-97efbcc65b9d644eb67b591a76534030-19144c4eaf801045-00", + "traceparent": "00-24ca083358aa5346806bb5d89270706f-df76e07bb5f4ed4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "a461009a7ec465a3d8be1a54c58e3575", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6923040d-92c7-42a2-a38b-7dd18c84bc5d", + "apim-request-id": "d85cf8f7-7c02-416e-9db4-62b75fc3bc6e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:34 GMT", + "Date": "Mon, 25 Oct 2021 21:13:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "598481068", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index 469876126473..04239c640acf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1471887b41988e47a872fb60919067df-fa7ca133b516f444-00", + "traceparent": "00-4473b389d5ade54abe498823a982574b-e41dcb38a22ca245-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f4f79420d55186c560e783cd65904498", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ae3a1713-b339-49a1-af93-bec0d0b08886", + "apim-request-id": "26b96413-3e5f-4c71-a2eb-96f90803f2a5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:26 GMT", + "Date": "Mon, 25 Oct 2021 21:13:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "843042242", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index e3eecc3365f6..58a232697eee 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-502ddd8792591a44a98acc8ae99be0ee-5171ccc1814e6b4e-00", + "traceparent": "00-0375cf6784e48f4287b929db133b1ab5-cb08eb2a0a6d2c49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "a82300e8850457b9e1ddd84e5e66ebf5", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb0384b3-97a5-46fb-8fbf-8dece8504b0b", + "apim-request-id": "b3377677-e6ad-4dc7-ab53-a4c77baa1c99", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:36 GMT", + "Date": "Mon, 25 Oct 2021 21:13:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "113" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1612151291", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index 96dbbcd4d14c..e2ee1324c66e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ac52e6cd0932c54689dd9ddc3a067cae-88a0e06a759e2b48-00", + "traceparent": "00-e30e3ee559537e4a80d35f89d31cb6cc-2f33e4aa3158564a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d0c9faccbe22f6229408f2811c507283", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20916abd-fcab-4818-87c9-0a2bb4e32547", + "apim-request-id": "03955672-2385-4564-a4e9-d60596c69855", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:26 GMT", + "Date": "Mon, 25 Oct 2021 21:13:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "documents": [ @@ -252,6 +252,6 @@ "Variables": { "RandomSeed": "1558892529", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index dc41d68f3dc8..685a07a7dbfe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f62b3b897680b243879de1d8ce6b90b0-536147222e97504e-00", + "traceparent": "00-b454d66bf266dc48ae55b7b0d32674c6-5f416378b113574a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "99f36dc03d5b69cad15ff682fb68e8a9", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "672c5879-cd86-4576-9aab-664a4ddf37a8", + "apim-request-id": "a3533a3a-168e-483d-a47d-561b830b9563", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:36 GMT", + "Date": "Mon, 25 Oct 2021 21:13:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ @@ -252,6 +252,6 @@ "Variables": { "RandomSeed": "1809635661", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index df0f638649ff..f8ce25b12b2f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4a4a97414c918d4ea01c2a388d532a5f-757d8f22d68e2e43-00", + "traceparent": "00-61c045d0074e2043ae0b40c1b2bef64b-91213c77181b0f40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "ea37c4c5b43ade506c055e9d1167082c", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b872324-e58c-4c51-88e1-117c50d671ed", + "apim-request-id": "1b754942-2768-4b5a-9868-3f24907fd18c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:26 GMT", + "Date": "Mon, 25 Oct 2021 21:13:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1646397317", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index 7e4dbdc1834f..f7c641b8a8df 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a73c1cce6e754146abb0ad5f10bc8ab9-e318dc43e3319d4c-00", + "traceparent": "00-0cec4807443ef6479d41dc2109bf116e-a89b6300b076f04d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d297a709781eea07c58dac26eba5fefd", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d290e134-2582-4c0b-88ac-962d7e52f577", + "apim-request-id": "d3559e40-c6c2-4a8f-ba8a-82ccb1a0a601", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:36 GMT", + "Date": "Mon, 25 Oct 2021 21:13:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1063573528", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index 1cad6329e200..f4a579b9ede8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9178f2a29f17da488e1881a2ea5cd268-befb0a6e30f5e64b-00", + "traceparent": "00-f409015bf639d54fbb28304113deb94b-6ed124df7cc33a48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "b93a282865c5e574aa1703755dff0595", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68918e5c-e333-48da-a246-c9ddc0e6c76e", + "apim-request-id": "7ebf05bc-50d9-4638-b974-82ddc730454d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:27 GMT", + "Date": "Mon, 25 Oct 2021 21:13:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1108552328", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index c4384801f633..8873cd42170a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8338e84c0e3c604e853b282cb6d53647-377ee542094c714b-00", + "traceparent": "00-2afb6216b8b0fe4784552097a097a45c-3a3c281a56253246-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "896aa869bee9e15710e9b281353ff7e1", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa88cae6-4e3f-43c9-a717-b5450bfa7179", + "apim-request-id": "142eed70-1fd9-4b6a-9861-c9744fa2e371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:36 GMT", + "Date": "Mon, 25 Oct 2021 21:13:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1480611001", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index 5ca65aa8514f..73c5f7ba2dc8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b4a247f4e0d1ef47ab122117a0666916-c4917e3c5420cc49-00", + "traceparent": "00-8632120c2bafb145be6853290dc936e2-d87d673c1a121d45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f4c1d2e666ddf215fcefdfedc5dd71c8", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9dadaf60-841f-4939-af65-774efc39abc2", + "apim-request-id": "3a35d0eb-d944-41c7-b16d-95d13be9ce5a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:27 GMT", + "Date": "Mon, 25 Oct 2021 21:13:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "876796289", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index f81888c56a05..f4ef75fc8ab2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c7d0c2f6c860f54cad3563fa5ba02910-0691f7f879ad0540-00", + "traceparent": "00-b1ecaf635d2bd846b7e2130c702a4f82-d6905ee4c2fb1d49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "26baa46075d446ba158f6fd6eeae447a", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68025f36-8264-428c-8868-93793a558360", + "apim-request-id": "39d9656b-aff2-4100-9720-33e5056ddc50", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:36 GMT", + "Date": "Mon, 25 Oct 2021 21:13:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "539665015", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index cb19868e8231..5490cc8137c3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d32ea627420804285fd8619f2786eaa-d18dde1717c5c243-00", + "traceparent": "00-d653579a37b83546b998df7e3f76cffc-3f56ab72ef2f314f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "381e2b63f2088d45202cae7fd25e5042", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ec8d363-9490-49d3-a603-fac764d1b252", + "apim-request-id": "9441356e-17b4-45a9-bd7a-d63ef1b5d90d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:27 GMT", + "Date": "Mon, 25 Oct 2021 21:13:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "documents": [ @@ -118,6 +118,6 @@ "Variables": { "RandomSeed": "1934874503", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index ad7789ea138e..7a8466becf07 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cab3ee4e69df514a9a9ad7b731e7db77-30948c55c61b8740-00", + "traceparent": "00-5af747ab2dea23429d9bc355f4bd51a9-cf1baba8f3d1b649-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "29ac615e7a25f0506bd8c86ac7133e14", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50e596e9-0c8a-4652-9cb6-3b676fd5ab5e", + "apim-request-id": "cbbc1b2c-a430-4452-9f13-357bfc14ded8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:37 GMT", + "Date": "Mon, 25 Oct 2021 21:13:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "documents": [ @@ -118,6 +118,6 @@ "Variables": { "RandomSeed": "951483506", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index d53acd0c9b20..fde3eb6cd614 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3b089ef4dee43d4fab79c4c7bd08fefa-94625e9faac8aa43-00", + "traceparent": "00-af2eb65bcd16ab4ea8a3ae68fac5a854-c23a45364890af48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "e97c715478efd2b509099d562415356f", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "7b7275e5-1f8d-4581-bada-003787e62cdb", + "apim-request-id": "0e18206f-a34a-466e-a2e3-509e1a4329f0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:27 GMT", + "Date": "Mon, 25 Oct 2021 21:13:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "627709314", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index 5772e22e62d2..5cd3b1eb35eb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5a0a80fc01e8714e8bb4e10f74eb2241-9f863d8a970e8942-00", + "traceparent": "00-c33d74f312828c4b9b05e6736531703d-d3d2fb8a514b3241-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "7d28785fafea6a705989dd511c352058", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "79b02b22-67da-4071-902f-9e23cd741df3", + "apim-request-id": "60e8e574-0b78-4204-97c3-ca8b6a5321b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:37 GMT", + "Date": "Mon, 25 Oct 2021 21:13:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "1350287540", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index 273796dc3f86..3b7edd828e21 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4f469848cbfe444f8cfb65dba25cd13e-f96404d21e01e84f-00", + "traceparent": "00-1c4106a0118ddb4da6d0990f95356922-c2c1ed584f36624e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "a82047bc1e56521f19fee095619725e3", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40bab834-b3a2-466d-a702-3d3473e96ee9", + "apim-request-id": "45550c43-510f-4fae-a8b0-661c9c0c909e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:27 GMT", + "Date": "Mon, 25 Oct 2021 21:13:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "847855095", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index a246de11796a..1c879677106e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4d5533e671ae1340985c9e8f5ddd5e10-91b032617c6dc44f-00", + "traceparent": "00-eb6722abf08cf64eaec63e456abd3a84-5f2c8f107324b94d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "e4b5e1c573e3bc3fc5137a6a90633740", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ed37283-9254-400b-b2f2-32168c4f11ae", + "apim-request-id": "0977bdc9-f2bd-4d33-a079-e0de64547681", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:37 GMT", + "Date": "Mon, 25 Oct 2021 21:13:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "256924080", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json index 0162df35e7e6..f560cad4649d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-11815660d390fa4ea7eea0f1e39fdecd-a6d50618bb783b4a-00", + "traceparent": "00-f95ae180df07824199f274fecfc3dbad-15079917ff58ef42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "4bb052b32c66958101e8bfb2d70a96bf", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e15718b1-2b3c-4db3-89c6-7caf600ee83e", + "apim-request-id": "c21b2a4e-f19b-493b-99f6-2a7596df25c8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:27 GMT", + "Date": "Mon, 25 Oct 2021 21:13:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "documents": [ @@ -252,6 +252,6 @@ "Variables": { "RandomSeed": "1053489488", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index 176b880a7550..6c265c59331d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f1d8e48e7207694eb669e730f9ca45b6-013cb39e11bdf84f-00", + "traceparent": "00-18447de64d697c43b97c088ae68cffe9-152d82cdad871444-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "10469efe411909195ef72681bf249b22", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2121da6a-07a8-4161-9ff1-1e92a107820e", + "apim-request-id": "7cf53492-c76a-4a01-bd4d-67b3f8e125ae", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:37 GMT", + "Date": "Mon, 25 Oct 2021 21:13:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ @@ -252,6 +252,6 @@ "Variables": { "RandomSeed": "1224561162", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index 93a2ace9eefc..ccdc4e164976 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9838435553e91b46870aa47c270fe0ca-7a703e044f0dbe41-00", + "traceparent": "00-4f31ca769f7737469d42d147d12cf17f-31bfcb44d3916048-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "380d3332cec3ce7a5b0d21c20c2f8b8d", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7c35cd8-af3d-4e8f-b137-7ef124599c23", + "apim-request-id": "c97db10c-0912-4fb2-935f-98cc3e769dc1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:29 GMT", + "Date": "Mon, 25 Oct 2021 21:13:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "2080433243", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index daa97f7c4eab..4ed1077eaa92 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2305eb05bff2bd458e522386ba61678c-0c7b389b6818904f-00", + "traceparent": "00-6f6dcdfa7e37e34a9c258d08ab0e8599-f25ac05322e9754f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f794f0733bb3c43d680189f109278930", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "333dc669-e03a-46d9-9d61-84bb1f542030", + "apim-request-id": "ff83e65b-286c-49d3-b817-c312acee3526", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:38 GMT", + "Date": "Mon, 25 Oct 2021 21:13:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1104601644", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index 96fd3bf66eec..2dc3b2911cb8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a0fff56c80274d4c906f457a02ef25fc-c90e19e32b0c544d-00", + "traceparent": "00-96128033ff04594a8db2296a74cd3d12-52b64b4125b39147-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "4e5bdbe5820d38723d195b24082e286d", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60dc90e1-10ca-402e-bd54-9299a7b35765", + "apim-request-id": "aa588299-0f7a-4506-b08c-0989319418ad", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:29 GMT", + "Date": "Mon, 25 Oct 2021 21:13:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "2146668003", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index e28a7a56437a..3c28445ebf41 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0cec24e38939ee4184b7797a2fbf3f11-cbd9f33a1d0e594b-00", + "traceparent": "00-3d4795baed62ea4a9d90a76f850ab8ca-e3d11541cfed7549-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "03ba29d245db7d4660e70538d783a159", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c51c7c1-c776-4cb1-b240-586cdf32453d", + "apim-request-id": "6083da4b-a727-4a86-8567-dff6e29d7636", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:38 GMT", + "Date": "Mon, 25 Oct 2021 21:13:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "9060464", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTest.json index 2fc9d417d0e8..6acf25b1c7c9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-2ba922b3748be744af7ce085d0d6202a-1d2d7734e2be3244-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-58a68bc20926ac4980f53542371eb91c-498780415682a646-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "281044ce62413e7f41aa77db23c5b9b7", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55d570f3-5534-4378-828a-76e69ac71772", + "apim-request-id": "f599c649-0e2c-45df-82e9-4bcd78eaff87", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:32 GMT", + "Date": "Mon, 25 Oct 2021 23:04:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "documents": [ @@ -72,6 +66,6 @@ ], "Variables": { "RandomSeed": "53742515", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTestAsync.json index 5b7ce1cdc06f..2cfcc767747d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithAADTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-5762d9e5ea5e1942a2e7578e6b7f317d-451c1f764831a646-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-3f17e5624319c94c88b8ab9419635346-93bda12e07024544-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "856c28003995315c9665766e550a7c71", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "efdcaf63-d586-444b-9d87-8d00e15b86b1", + "apim-request-id": "9bc68812-0328-46e7-8972-a102081e8f1a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:38 GMT", + "Date": "Mon, 25 Oct 2021 23:04:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ @@ -72,6 +66,6 @@ ], "Variables": { "RandomSeed": "1198982064", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index c56a2c354049..bb862d397678 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-00d890f14226b14485df7fa7dfda1a9f-a0c1f33a3ab5a546-00", + "traceparent": "00-368890d794e6354e8f780a04fb8e2519-4b12fa586958904e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "1cd519dfbccdba31b1f719f550932df6", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "771d9360-78f1-410b-95ec-1b24d8ce9d3d", + "apim-request-id": "337d2d40-85e7-43f5-81bb-7e865b769be1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:32 GMT", + "Date": "Mon, 25 Oct 2021 21:13:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "673624529", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index be48c2bc4212..359e7337ace8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cefdf451a1fec84ba3c276566e56e6fa-fb34619f7c66204d-00", + "traceparent": "00-05acc539bb74224284b7b353a8b177e1-c95eb879dba34647-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "e4628ff9d75e35fa30a2a74d75b5d054", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2b7ec2e-066e-497e-997f-e98ba8430584", + "apim-request-id": "636df9cb-9e45-40c8-8520-2fd0a1a0ad6e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:38 GMT", + "Date": "Mon, 25 Oct 2021 21:13:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "486778307", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index f42c2b7107d7..179a2f8c8937 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5b9e51873fea94499513a990a19f310c-0e02fd85648a8844-00", + "traceparent": "00-232986cc67173f44925e07ba4db875b4-e13f76fc758f9042-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "0226741a4a3852fb661facf15a20cdfc", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d43058c5-92d5-4ea9-97a3-0df300b14de1", + "apim-request-id": "5ab81097-02d4-4450-9610-ce047d285a3f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:32 GMT", + "Date": "Mon, 25 Oct 2021 21:13:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "735963321", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index 56aad59c1309..35ff0ffdff22 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5b5ae0e4e743ea439c57bf296d42e521-ee48bdf52d268940-00", + "traceparent": "00-ead18c2fa1df3d479846a212b1e79cdc-9ab849dcad702c4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "1d19c9bc741aeaae2a3044500760d7de", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30254ee5-9c53-48d7-a70f-02c750469f0d", + "apim-request-id": "4d034cca-217f-48b6-ade1-a154efe253a7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:39 GMT", + "Date": "Mon, 25 Oct 2021 21:13:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "1305725402", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index 24f684305d76..7e05dc78de5f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-28f1a563938341498b0804bbad3b2b08-ceed3180bd483f45-00", + "traceparent": "00-ceeff2a79d48ea468274dc728a7ca47a-7f2f1b3c9fbe1645-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "b1c263e328066fc8dce532b649cbfd03", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "296a50e2-e204-4c3d-80ac-00e8998bc660", + "apim-request-id": "c05ff7cc-a1f2-491b-9d21-17e80c9b509c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:32 GMT", + "Date": "Mon, 25 Oct 2021 21:13:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "137641087", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index dbbced290af5..70367a4072b3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8f28bc6e8a8e084fb99e57552bfe1749-777858ffe0511c43-00", + "traceparent": "00-2b4f53567a7abe4fb4d8017cd673b935-c5567780555ebe48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "61e4104888cde5cbe34786063a0401dd", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "706c37c6-ab2f-4c64-8c43-6657b72cc4f2", + "apim-request-id": "06de130c-cea9-449b-84f0-a7fdf8a1927c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:39 GMT", + "Date": "Mon, 25 Oct 2021 21:13:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "537807865", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithMultipleActions.json new file mode 100644 index 000000000000..29344ecc350a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithMultipleActions.json @@ -0,0 +1,902 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "483", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-eed830d287dff84d9ce8f79b2c839a42-b7566b33aed37c48-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7ef8fc8067a039e9bfba18b79c28111", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "That was the best day of my life!. I had a lot of fun at the park.", + "language": "en" + }, + { + "id": "1", + "text": "I\u0027m not sure how I feel about this product. It is complicated.", + "language": "en" + } + ] + }, + "tasks": { + "sentimentAnalysisTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "AnalyzeSentimentWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "AnalyzeSentiment" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e7020528-b99b-4652-9ada-3f4400498362", + "Date": "Mon, 25 Oct 2021 21:13:25 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "294" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6f57274c91eff72e05ebd5651122253", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3218850b-9bdb-44fd-aa53-69455244dddc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "jobId": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75457876211446db86ac360fe02e91f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a70d2064-4287-4883-b486-2b5fd5807302", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13: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": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d257cbd43ff1fe741deff71b4947b288", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "73b47b72-7ea1-4787-a7b7-a5c5b7f57dc1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13: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": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00154dd80c7c53fc96af2f7292631fb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e202c122-7c90-4ff4-a235-47dcf6960b22", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13: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": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8681cacd50bb36610446582529c0fc3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6f674058-8c04-4def-8507-d907e2bcb989", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13: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": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9236adfa9018c876ce043c4210016bb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0501bd45-725d-4e8f-b4bb-36bfe1a92d05", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13: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": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e4d45d02bc588cdebdefc36b3d729d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "800bb641-b272-4979-817c-31c21b817636", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "jobId": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e578f0b28c2c3d9953b8b8b6131f2602", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "97f2af36-f855-4ea5-bfa7-06bb9c1d2d1a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "jobId": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4549eda7e73ce79e0aea73a934015f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d29fc86d-ad97-4a10-9015-e9abf767f64f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13: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": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f8f66db8689438dac0f2b0c731774cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3c5ff22c-44a6-4a9c-beb2-a063fe6eadb7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:38 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": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "145bfab84482346277aa057de55faa12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b3ef0f3b-6b10-4b5c-96d1-5fb8f9b3f852", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13: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": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "addac1a30690537911113863526c5ac8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d35e040e-fe94-419a-8d6d-85e7e5053e50", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "jobId": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:26Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9981db3a00e49673035aa8de810f5d4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f3ef9ed8-ffb9-46a8-89d5-3c0ad558c67b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" + }, + "ResponseBody": { + "jobId": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:41Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:13:41.2632841Z", + "taskName": "AnalyzeSentiment", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 34, + "text": "That was the best day of my life!." + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 35, + "length": 31, + "text": "I had a lot of fun at the park." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.02, + "neutral": 0.85, + "negative": 0.13 + }, + "offset": 0, + "length": 43, + "text": "I\u0027m not sure how I feel about this product." + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 44, + "length": 18, + "text": "It is complicated." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f406e1c1-83f3-49fd-8a29-7fcb59195602", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2681865c63cb23b800703710cfee10a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b3dfdbf7-2d8d-4be5-b75b-97f0c3b3c445", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4142" + }, + "ResponseBody": { + "jobId": "f406e1c1-83f3-49fd-8a29-7fcb59195602", + "lastUpdateDateTime": "2021-10-25T21:13:42Z", + "createdDateTime": "2021-10-25T21:13:26Z", + "expirationDateTime": "2021-10-26T21:13:26Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:13:42.8824223Z", + "taskName": "AnalyzeSentimentWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 34, + "text": "That was the best day of my life!." + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 35, + "length": 31, + "text": "I had a lot of fun at the park." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.02, + "neutral": 0.85, + "negative": 0.13 + }, + "offset": 0, + "length": 43, + "text": "I\u0027m not sure how I feel about this product." + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 44, + "length": 18, + "text": "It is complicated." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:13:41.2632841Z", + "taskName": "AnalyzeSentiment", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 34, + "text": "That was the best day of my life!." + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 35, + "length": 31, + "text": "I had a lot of fun at the park." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.02, + "neutral": 0.85, + "negative": 0.13 + }, + "offset": 0, + "length": 43, + "text": "I\u0027m not sure how I feel about this product." + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 44, + "length": 18, + "text": "It is complicated." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "382468166", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithMultipleActionsAsync.json new file mode 100644 index 000000000000..95a6ec5ba68d --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithMultipleActionsAsync.json @@ -0,0 +1,1271 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "483", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-9fe4faec76064442a7335062829b226a-f8cc5fab7cdb5645-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af7a81d59f0d0662a00424cc54613f1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "That was the best day of my life!. I had a lot of fun at the park.", + "language": "en" + }, + { + "id": "1", + "text": "I\u0027m not sure how I feel about this product. It is complicated.", + "language": "en" + } + ] + }, + "tasks": { + "sentimentAnalysisTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "AnalyzeSentimentWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "AnalyzeSentiment" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "26aef809-f448-4f9d-b660-597aa9547085", + "Date": "Mon, 25 Oct 2021 21:13:56 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "395" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a1d031a54c087c9bc81023a09f79e72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "acfa2402-a481-4ac3-bc63-e8d8d1003adf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:57 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": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:13:57Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4e02b8ed8bf01c6e4d74fd8018e92e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fd3d2a88-901c-4c6c-b4cd-3178eeaf9fe3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:13:57Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d947ee9db44a81ddb8f3f38b9c28fda9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3604f99e-2ef2-451a-9d1c-4cc2301892f9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:13:59 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": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:13:57Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "283db1666b81415b3d1ca6e805f1852d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3dcd70ff-943b-4a62-bdc6-d6a1c831432f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14: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": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:13:57Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a9c1feec4afda284e5e1bcce43a64bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "26c0d765-ba2a-46fa-a524-43191235ab83", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14: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": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:13:57Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5071a5da6a51326193059c2e0df57cc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4d75708a-638a-4b50-a55b-db93ef7e8e05", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "jobId": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:03Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c9cc66de28ba1f98862da224f8f5d02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f84caac1-c7a2-48b6-8d76-7fa644fd7e25", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14: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": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:03Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f0ee9b7357f84dcbe6a87aa28facc58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea7da722-e87e-4cef-9dc9-47b68b1f0686", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14: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": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:03Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e5e55e2e79df730abcfc7ee903ee304", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c573d4d2-b136-474c-bcea-f055f4e5e839", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:03Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23769aa81ce63746ea18be215b4f798e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2fc50f1f-27a4-4322-b540-e2bc9a251c76", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:09 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": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:03Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa3f81963f30d064b917b3af6dedf47f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "41c95361-8060-4c25-ad3c-e32d6a2be0cb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14: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": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:03Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e028386a884c6720e263485290f9c5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5f62fcfa-2507-4192-9374-645ea46acc89", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14: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": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:03Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e583956e9fe69d335a66acf6896cafc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aa88c833-a13f-4588-bb6f-74c3f9362eb3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "89" + }, + "ResponseBody": { + "jobId": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:12Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:12.4728014Z", + "taskName": "AnalyzeSentiment", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 34, + "text": "That was the best day of my life!." + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 35, + "length": 31, + "text": "I had a lot of fun at the park." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.02, + "neutral": 0.85, + "negative": 0.13 + }, + "offset": 0, + "length": 43, + "text": "I\u0027m not sure how I feel about this product." + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 44, + "length": 18, + "text": "It is complicated." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d89a3e24eb4ded0a0f79eb090bdfa7a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fe1a1eca-7082-4720-a0f4-eb75a2c59452", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "831" + }, + "ResponseBody": { + "jobId": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:12Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:12.4728014Z", + "taskName": "AnalyzeSentiment", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 34, + "text": "That was the best day of my life!." + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 35, + "length": 31, + "text": "I had a lot of fun at the park." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.02, + "neutral": 0.85, + "negative": 0.13 + }, + "offset": 0, + "length": 43, + "text": "I\u0027m not sure how I feel about this product." + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 44, + "length": 18, + "text": "It is complicated." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3459577ae5959d80af9958dd3da25d77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6205e006-d182-4ebb-a34d-0749909a0b97", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "725" + }, + "ResponseBody": { + "jobId": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:12Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:12.4728014Z", + "taskName": "AnalyzeSentiment", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 34, + "text": "That was the best day of my life!." + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 35, + "length": 31, + "text": "I had a lot of fun at the park." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.02, + "neutral": 0.85, + "negative": 0.13 + }, + "offset": 0, + "length": 43, + "text": "I\u0027m not sure how I feel about this product." + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 44, + "length": 18, + "text": "It is complicated." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea60385cc3746a0f2e6aff85fdc95e55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f2b0f9a6-fcb0-4529-b7b5-a052b5c570c2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": { + "jobId": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:12Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:12.4728014Z", + "taskName": "AnalyzeSentiment", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 34, + "text": "That was the best day of my life!." + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 35, + "length": 31, + "text": "I had a lot of fun at the park." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.02, + "neutral": 0.85, + "negative": 0.13 + }, + "offset": 0, + "length": 43, + "text": "I\u0027m not sure how I feel about this product." + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 44, + "length": 18, + "text": "It is complicated." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1154c1fe953d3f66bdfc28b3922caf6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "946c4c20-e987-4841-a803-7a269ffa3f4e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "332" + }, + "ResponseBody": { + "jobId": "a8ee49b8-7c7b-48b3-bba9-685e823dfb09", + "lastUpdateDateTime": "2021-10-25T21:14:19Z", + "createdDateTime": "2021-10-25T21:13:57Z", + "expirationDateTime": "2021-10-26T21:13:57Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:19.7887848Z", + "taskName": "AnalyzeSentimentWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 34, + "text": "That was the best day of my life!." + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 35, + "length": 31, + "text": "I had a lot of fun at the park." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.02, + "neutral": 0.85, + "negative": 0.13 + }, + "offset": 0, + "length": 43, + "text": "I\u0027m not sure how I feel about this product." + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 44, + "length": 18, + "text": "It is complicated." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:14:12.4728014Z", + "taskName": "AnalyzeSentiment", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 34, + "text": "That was the best day of my life!." + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 35, + "length": 31, + "text": "I had a lot of fun at the park." + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.02, + "neutral": 0.85, + "negative": 0.13 + }, + "offset": 0, + "length": 43, + "text": "I\u0027m not sure how I feel about this product." + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 44, + "length": 18, + "text": "It is complicated." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "521398718", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index 85c027f8b5cd..d500c9da036b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d452cdec9634574fbea5ea6a06dd81b1-c5756f756f9a9d4b-00", + "traceparent": "00-1046ff9a6462754d8cf704d60cdaa359-b1de3273b8f17243-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "1e33ed24967d42087f8188a6111ef9b0", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c29a7bbd-23d1-4b00-bef4-b00c2e3b604f", + "apim-request-id": "c6fe1b98-9140-4162-992f-5f6eefaa52e1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:32 GMT", + "Date": "Mon, 25 Oct 2021 21:13:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { "documents": [ @@ -177,6 +177,6 @@ "Variables": { "RandomSeed": "4400155", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index fc8d08c39a65..8fd7783f25f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5cf074c7a80fd643817a8b470f7444ef-116746e87cb6084f-00", + "traceparent": "00-7924c4d203007f4db38e2ecdc660fd25-815236c2582fab4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "504a9c53bf1eca7814bfce867e01718a", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86d7f69b-d01a-45da-a40c-f8582cac32fd", + "apim-request-id": "913e6e98-583d-4d68-9cc9-53839242e955", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:39 GMT", + "Date": "Mon, 25 Oct 2021 21:14:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "documents": [ @@ -177,6 +177,6 @@ "Variables": { "RandomSeed": "1364359232", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index 55f5c0453a48..e4186563fec9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bfeec9f8f7ac6445913896a0e9f8fd65-3c38e11d1e993941-00", + "traceparent": "00-08c678312eee38488e520b40f818a5b1-b3c87ff6f3ae2442-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "558a7442c3b1c5137141db1dd8ca6858", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9882e4a7-8e1b-4ef7-8f0d-d17458ab82d1", + "apim-request-id": "732e9863-ff39-40aa-80b9-e1dbc74622cc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:33 GMT", + "Date": "Mon, 25 Oct 2021 21:13:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" + "x-envoy-upstream-service-time": "114" }, "ResponseBody": { "documents": [ @@ -75,6 +75,6 @@ "Variables": { "RandomSeed": "1727170942", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index 4ea8072e9591..d3fe85b2e372 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-779a4df1746c87499be029c6445c9a96-2949dc26c9f0a447-00", + "traceparent": "00-611b092c326aa648a7ee790739250ac6-b1cfc1db8e2f1946-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f6867f38d810d57a89dad763eab07a05", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc9ba73e-efeb-4551-a926-5fd68c30a379", + "apim-request-id": "2ffdcf88-e707-4680-9f0e-8ab54ab038bb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:39 GMT", + "Date": "Mon, 25 Oct 2021 21:14:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "documents": [ @@ -75,6 +75,6 @@ "Variables": { "RandomSeed": "167361615", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index 8ab69eae8a39..de9a82b909e0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9b47814fbb1de74fb5d7ae08f1035218-719ac8c2407ce54c-00", + "traceparent": "00-86675bd77ae22f4ab8d4bd3342505e82-b522e4ea33228f45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "8d0590d28394353aadd5df7e697ac312", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e29d2385-d37f-448d-95c4-ad7f13dc975f", + "apim-request-id": "e57b83da-b803-4796-9a07-c55f5c205670", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:33 GMT", + "Date": "Mon, 25 Oct 2021 21:13:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "825040414", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index 4ab848923233..8a433d32b5c4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-16d49bb96512444d93816394bf9c19b4-3bfa373d08f3a545-00", + "traceparent": "00-bedf395038e44247b937e0e794dd3b30-d86a26ff4f910041-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "94ab183ce7dcf7c7f3beeb119ae08867", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1106987b-0f94-4486-a693-23502b3de969", + "apim-request-id": "7d442144-e303-4e73-93db-2f9ce199b37d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:39 GMT", + "Date": "Mon, 25 Oct 2021 21:14:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "1263606711", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index 8f767e4fa83b..5d83adf05bf8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-39b3f03430d35843a48a9bf6ddfb11c1-2a1700a9adb36645-00", + "traceparent": "00-7836a90f32b6ce4f9d81c3b6d758961b-49bf448ba9587d4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5005f5e8a08b47218215f19574b370f6", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56b09dba-c21b-4159-9f18-fe1848a3b4a1", + "apim-request-id": "c9da7c4f-4d7b-4ca3-adac-926e3538c272", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Tue, 03 Aug 2021 18:39:40 GMT", + "Date": "Mon, 25 Oct 2021 21:14:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "2925177", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json index b12e80e28e0a..3c5451269064 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3eecb74eb951a2428f837626330b2dfe-e3082534112df744-00", + "traceparent": "00-0b59308d0b8fba41a9fc40b617a59f55-81ee680878f36c4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "3574863b78b3d4b99962ee1a8b7bbd89", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc5d4e8e-a319-4eb7-b67e-25cc62278ace", + "apim-request-id": "ddac0f01-6fc2-413b-b3ab-87c9dd3a9216", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Tue, 03 Aug 2021 18:39:42 GMT", + "Date": "Mon, 25 Oct 2021 21:14:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "1287375904", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 02dab39ea482..6c0b3da5adf4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f68f9d26ebeaaf41ba2928a24b016b43-e1a410f3d7ca0947-00", + "traceparent": "00-e9612cb16ad7a64d9034256fe473bef3-a4e6424693534e43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "738db85ac016be284349434968e4adff", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "db8ebd0e-d553-4b4e-ac51-3d06c64c5b52", + "apim-request-id": "3eb35aa0-841a-4543-a9ce-db83e63c431b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Tue, 03 Aug 2021 18:39:40 GMT", + "Date": "Mon, 25 Oct 2021 21:14:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "statistics": { @@ -105,6 +105,6 @@ "Variables": { "RandomSeed": "211607003", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index 1e60ab29ca45..66ba3e08a924 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4b9efa99d20d5e41b9822476e350863c-01518bdadcbe7547-00", + "traceparent": "00-fb0632c0f6a3f245855cb13234a03ec1-bc3b7b0099b27443-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "6246079b8393935bca52b813124b2ad7", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35c920eb-e99c-441b-836a-245a8ffba07b", + "apim-request-id": "d4749c00-3a08-463b-94ed-ae659dcadba6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Tue, 03 Aug 2021 18:39:42 GMT", + "Date": "Mon, 25 Oct 2021 21:14:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "statistics": { @@ -105,6 +105,6 @@ "Variables": { "RandomSeed": "293475495", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index 35a9cabe87cf..68f2307e2ab2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f85b0b1af4ce224d9561985015b6f04a-29c742a905bcde41-00", + "traceparent": "00-9e29ca1fb76d35448c1a57e1903c29dd-3edaa384a33ebb4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "9ed49d935379ea824d7c2153a1e6e6e4", "x-ms-return-client-request-id": "true" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c006bf76-fe17-429d-bf2b-cee56b463688", + "apim-request-id": "aa437704-2467-4b57-83fd-915988041d1b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Tue, 03 Aug 2021 18:39:40 GMT", + "Date": "Mon, 25 Oct 2021 21:14:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ @@ -101,6 +101,6 @@ "Variables": { "RandomSeed": "1725013070", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index 40ff0dd2b89a..8d14e84480f2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-477c1e27a8557040b26e641e9c8123f2-78991b11e65b9445-00", + "traceparent": "00-5e389c6fe2c5c44b882ce520827d1b3b-081846240884b741-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "da5f41d41140dce5b95983493bb999e3", "x-ms-return-client-request-id": "true" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ae4087d8-894b-4503-b632-47ca288a917c", + "apim-request-id": "cb51dbf9-8e0e-4e04-ac17-8b7b75e8c6c4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Tue, 03 Aug 2021 18:39:42 GMT", + "Date": "Mon, 25 Oct 2021 21:14:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -101,6 +101,6 @@ "Variables": { "RandomSeed": "1564753879", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index 5ddcb8071c56..0de2ef3314cf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ec9c285b3954c84fb5ee39d5e1c8e06a-096188e250583242-00", + "traceparent": "00-48e23d0c29da5b49b0980500a4f87249-6116176be8bc2e45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "3ce40d8d4db949068b12a56808d1cfa5", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fef0db58-ccad-4884-8c30-f58c22267264", + "apim-request-id": "63d9c478-71e2-47f5-b161-7c97c44cabd8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:40 GMT", + "Date": "Mon, 25 Oct 2021 21:14:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ @@ -90,6 +90,6 @@ "Variables": { "RandomSeed": "1998787501", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index 61b011fdf281..18606b7395b5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-91428c5de2bfb24aafc584f429365b12-8ffae9bfab3b524b-00", + "traceparent": "00-99e43a8c87c7d3449021cbb09f5181d8-ca805695ea8f8b4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "51807d44b190171f3639086e14582723", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64f85d7c-5c94-4eb2-b9be-7ed8f01adb82", + "apim-request-id": "0ce78f8d-c911-4af6-a5f8-f3dadbbebcff", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:42 GMT", + "Date": "Mon, 25 Oct 2021 21:14:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -90,6 +90,6 @@ "Variables": { "RandomSeed": "1902435763", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index 00bf8cb6dd93..d6e9ccb67bf4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-75bd4101a43c2040b6fc7360c48ddee5-f9e77bfb1c0e5645-00", + "traceparent": "00-995f9b53f69d4842b7c9be3a5fcda01d-17c5b521b9055246-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "1a3b3f53b2eb19e83bb91b78bee10b95", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "8904e4ef-e1a2-4549-83c6-b3c082f6fb3e", + "apim-request-id": "8ff1052b-62f4-4ad4-bc01-f0ce1fd82fcd", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:40 GMT", + "Date": "Mon, 25 Oct 2021 21:14: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": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "1842668100", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index 142272f0034d..3e411489454f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dd72b0ded3dd9145929c653a14298009-3b03a58fdfff944f-00", + "traceparent": "00-ee0456df3d2bc9419cc5c1da6f07bdbb-419eb3d1463ae847-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "b23c80179f571f450cf30413f8966972", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "47860001-e355-4cce-95a4-8cebb38d3ccd", + "apim-request-id": "9924b14d-c525-4e8c-9304-18f40275011c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:43 GMT", + "Date": "Mon, 25 Oct 2021 21:14:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "1421275547", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json index ac55f14e2f0d..ae6c2f02fb0d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3a716126e5556438498ff81669182ae-2718a92971048948-00", + "traceparent": "00-325438ad9a88684cbb795904fa268a97-6bff12ba5fc83b49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "ed66d74da14036cde144d6235dacd6d3", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ceb51cc1-b895-4afd-b86a-8c65ef1c6130", + "apim-request-id": "331760fe-b665-4c8f-a2af-ff1f3cb61cac", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:41 GMT", + "Date": "Mon, 25 Oct 2021 21:14:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1472278800", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index a978dba5a5d3..d3af59e4d141 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-286b2362dbb5ea4b92d5101a7b637c78-cab149f9c0179640-00", + "traceparent": "00-251bcf06a9bfc243bbf08b9ba319af6c-f20819edbfadcc4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "46af5eece4595e8658920ddb272bdb42", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3d24dfb-c4bd-48ef-83bf-ea4dffa2bd53", + "apim-request-id": "aea89b14-1b3f-4493-a48c-de527dffd759", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:43 GMT", + "Date": "Mon, 25 Oct 2021 21:14:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1379897499", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index 0ae90237dab7..930afb543f18 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-08c62cb125f13740a5749cc628fce9ac-f59e79217f85d94d-00", + "traceparent": "00-e8b75bac63419048b041ff7bb609dd81-2e3999016983b84a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "acad3cc12aa10a7667d1533045b0a321", "x-ms-return-client-request-id": "true" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f8c6670-15c6-4f6f-96cd-671452cf7fc5", + "apim-request-id": "c8951fe4-87ea-4690-92ac-425fc556625e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Tue, 03 Aug 2021 18:39:41 GMT", + "Date": "Mon, 25 Oct 2021 21:14:23 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": "10" }, "ResponseBody": { "statistics": { @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1441514523", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index b0653eb6ffcd..487a5db9b3b2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c971fa9d931a7e479b58df663feca78a-b39099e15f363b4f-00", + "traceparent": "00-8e8e866108bc614bb756d919109ab988-90e91eb291187e45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "50a7683e77aad92fe53b41b770dfa6fb", "x-ms-return-client-request-id": "true" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2069b970-2948-4d44-8781-20c37a6583d7", + "apim-request-id": "3c7e5b43-fd35-428c-9852-d0341ee5f4ea", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Tue, 03 Aug 2021 18:39:43 GMT", + "Date": "Mon, 25 Oct 2021 21:14:28 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": "9" }, "ResponseBody": { "statistics": { @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1925146009", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index 66c7f83bc2d8..292a3dd16f31 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e945308f85bd74c97fd16d5938c14b5-502b5ae9de700a49-00", + "traceparent": "00-388564516f627f4c987a6065e5eb8451-4c1bffef3aa89646-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "7aaab163ed1d982c319bbad40483549a", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be03ae11-32e4-4d23-b910-557cad5801b0", + "apim-request-id": "c47011ae-a099-4910-bbeb-20abf6759478", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:41 GMT", + "Date": "Mon, 25 Oct 2021 21:14:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "1945127661", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json index e6c07b4700b0..cf8f2dc28052 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f604c9d86f633f45bd18e357e545e068-23085ac0482bd34f-00", + "traceparent": "00-5c7763813f0117409fc336d92409e108-08acfee9c5884c42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d4cc6357ff58c85240bd64c6445c1d0f", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c15e5f3-d8ea-4488-bc2b-8f2a83d764af", + "apim-request-id": "bc201a75-1948-4731-9f12-32a03076f892", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:43 GMT", + "Date": "Mon, 25 Oct 2021 21:14:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "2124897013", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTest.json index 935bb7ae07bf..541689c3eac8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "82", "Content-Type": "application/json", - "traceparent": "00-a2821f746e5dd84fad944b9d8e3e1961-cf32ca163f97ee4a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-b2705a316d5f8f41bdd1a50f2ecfbb26-eed10a448943b446-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef2430ae6f80565b38fb6ed3d787f05a", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d128c74-d1c0-4c59-a2d2-ee4cc74a6b68", + "apim-request-id": "2ce402e9-b555-4341-b908-9a62a5125ce1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:41 GMT", + "Date": "Mon, 25 Oct 2021 23:04:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -58,6 +52,6 @@ ], "Variables": { "RandomSeed": "810256690", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTestAsync.json index 5ec5a6489d7a..c5bfb58a3efe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithAADTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "82", "Content-Type": "application/json", - "traceparent": "00-71b02067a08f884a89569b4f625e0dfa-4da18fed9ef25a42-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-ba86003e76b1e7438d84a36bef2b9cf5-e1c1ea46e4086c4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b8281bd4591fa487485e468863dda1c", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df9426c5-8557-43ba-b71a-7cf411335755", + "apim-request-id": "831da8db-830b-4a12-9d98-c9bd817192c4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:43 GMT", + "Date": "Mon, 25 Oct 2021 23:04:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -58,6 +52,6 @@ ], "Variables": { "RandomSeed": "571449587", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index 56a14e22d31a..d802e9491488 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7bbbc1c68d69434ea06f63dd0f4a3221-5cb4bbf6dce54f4b-00", + "traceparent": "00-51b97d8c75c38d468dc3bcbcaeed2ded-09a18ff4aea6dc42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "98a2a27e9082d475805aa932800b5cf6", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c96d1bb-65b2-4664-b1af-d9eb72568f58", + "apim-request-id": "211aa00e-418a-49db-b2d7-860e59a5937f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:42 GMT", + "Date": "Mon, 25 Oct 2021 21:14:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "1745096315", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index 8679c1c5d084..f355682d94ca 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2bb94162c44f884a82fa6b2f300602bf-da8bd928a35fe44e-00", + "traceparent": "00-d6f8be02873a0d45a4af19ef60e30af2-c490a94ced308549-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f0760fc68cadb07ff1c89a4d1612c056", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91b9c91b-3549-405d-a4b9-3aa455e9c7fa", + "apim-request-id": "a733d54e-58c9-4f63-a49f-cd9eaa8de72e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:43 GMT", + "Date": "Mon, 25 Oct 2021 21:14:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "2142485753", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index 807e01293510..6c7c92f7d0a7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-79785ff455eefb4ba054f3f9d58a40ec-0d37da7d900e1f44-00", + "traceparent": "00-deae7a07d7f4c74e99ee3cd43a15c226-baf955c3af9d8d43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d6d037d3997433f0d1d408295081d2b0", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e5ca421e-0615-4344-9e01-3514e01b3f9d", + "apim-request-id": "302049a1-6da9-47f3-8a6d-849f8775e7cd", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:42 GMT", + "Date": "Mon, 25 Oct 2021 21:14:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "467349083", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index 45b9479657e6..2efea4048633 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bc721c7c95e75144a0487e3dfaef54be-5fda2d4d8b7c1d46-00", + "traceparent": "00-df7bfb9adeaa4a42be44907acfa08f90-18aabb92c3a7e94e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "9d92baec240d7c0e78b80d24d8752359", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1941123b-17c3-4d21-9948-28331594d7be", + "apim-request-id": "798c4a68-6289-490d-b92f-3ade3af98dec", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:44 GMT", + "Date": "Mon, 25 Oct 2021 21:14:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1987537636", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index 747161296240..45518490d05e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5aad8f3737dac242b17a0e9cb233b68f-9ec3099cef734147-00", + "traceparent": "00-0a7af13f994f104b92c38b67f11314c8-592923331fd22e49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "9cded6f43daa9a1f5be8cb3934e1c44c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "071432db-ce78-4998-97aa-b887f9a9aef7", + "apim-request-id": "524e42e6-d81f-4edc-b565-ec5fa861827e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:42 GMT", + "Date": "Mon, 25 Oct 2021 21:14:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "1940049365", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index e6624fc303e7..81f47e40a40d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-174ed3ae743f30408a432610a4bf17a6-6e8f837fda27cf4c-00", + "traceparent": "00-0e140b4dad0277439125b34c8b42180b-5d75210466d3fd4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "6124b40a04621bbacc815e287718638c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a346cc1-d84f-4ba7-8ef1-d8a2997f935e", + "apim-request-id": "33a09438-5d27-4aa7-be16-3e203bee04f1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:44 GMT", + "Date": "Mon, 25 Oct 2021 21:14:30 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": "9" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "1328135102", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index cec9c1777276..0b89cab86648 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b6044d1a04663a4192c9378bf658bc9b-6ac036e4af180242-00", + "traceparent": "00-e794d41a456b0545b333f66f0672a240-d7ef9cac73c9bf4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "dda057b9e217d2ba6e5090c17d8fd607", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6fc7946a-2f00-48d5-b599-e4fdfe75d8e4", + "apim-request-id": "b97db36b-6ad8-40b1-bc9a-91dcd7952fd5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:42 GMT", + "Date": "Mon, 25 Oct 2021 21:14:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "397710028", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index d94680b5171f..5e68d97c6197 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e33013c39401a748becc5a564a26e285-27d4ec9f277f7443-00", + "traceparent": "00-26dd75bf8f1bbe42830d2c5331783177-098886bacca72d44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "bfed051a0d9b7fe81f8b58b8ccb397c0", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1339155b-08d2-4ab4-99a1-09eedfd1b58e", + "apim-request-id": "80943738-a5dd-48f5-91b4-b94534ca418c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:44 GMT", + "Date": "Mon, 25 Oct 2021 21:14:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "691922193", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index cb7dd23c9160..138e9e39dccf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-efed9baedd60c04f9ff90cc991a953b0-4433fdd4fdbec14a-00", + "traceparent": "00-6ae227de4a0fef4aab18959ea951591b-a06d755ef9424e4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "632e1038e2d2bd9cdcf3dd442e79c63c", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7567d243-90f3-4cbe-baf1-53358c0937f0", + "apim-request-id": "89d43d42-5971-4c56-a343-08a3e4cd2497", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:46 GMT", + "Date": "Mon, 25 Oct 2021 21:14:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "2011102001", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json index 5e81c162d392..2c0e293dd2c4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e0ba7658d5071f46b9be0d425a1311ec-8d599bab583d0749-00", + "traceparent": "00-38543614ba80e14ba2a0ff4ac9c024b0-b13e295250437b4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "bb6bf08839909e0e578d5bc1b428bcd2", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83d75bdd-df17-4eeb-9260-c8a64cde9613", + "apim-request-id": "2900ec78-1d93-4bcf-bc90-229f5d3c7451", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:47 GMT", + "Date": "Mon, 25 Oct 2021 21:14:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "141" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "1790351005", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json index 4465a8626835..ada4c8eb8faa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5fee5bbe55b0184ab26fee8c0cc36dbd-8cb21fa322797e43-00", + "traceparent": "00-519170d8fb7840418acbc220be817522-15a11bc23090e44e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "4dfa2958a1568d79bc14e1b570d63d15", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d121136-3d88-4b01-8fe4-d95248c64e4f", + "apim-request-id": "d4952316-0d35-41bd-868e-5507cd33409b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:46 GMT", + "Date": "Mon, 25 Oct 2021 21:14:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "statistics": { @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "1074286074", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json index c7ad060c45df..0336201a5047 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f05edf1e33cf64ca7a1aacc6b833727-444da63aa0878444-00", + "traceparent": "00-0abcd4aa9bed494bae8a073a83609c6f-c02321aa68d2104e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f8f1e114d697e804255315d1c7e9b6ab", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f7b6934-b1ad-4882-bdcc-0edfba3b2c6e", + "apim-request-id": "867fe77e-4b05-488e-84ed-5d4608f7e300", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:47 GMT", + "Date": "Mon, 25 Oct 2021 21:14:59 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": "29" }, "ResponseBody": { "statistics": { @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "1602869274", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json index efa57d9f0580..0300c68e38ae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8813a07ffdf3564299aa04a9c461349e-fcd3dacd43d53045-00", + "traceparent": "00-2143bfacecae5b4dbe4a2991b54f7396-ba79c82089b2ed4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f8376358e18a19e0b7e6f893926ac745", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93b3c448-e07b-4e9f-bed7-5e2ec392a379", + "apim-request-id": "f4ed489c-7200-49e0-8635-1fec477bd41e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:46 GMT", + "Date": "Mon, 25 Oct 2021 21:14:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ @@ -58,7 +58,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -74,6 +73,6 @@ "Variables": { "RandomSeed": "979539460", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json index 35a62909796d..cec26167b84a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e326c5e14d442b4aacf2bdecde162f89-f01b10079318db43-00", + "traceparent": "00-0d5ad3a6aed34743af3960747339334c-289662570defd84b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "272edb015782fb6dbcae1cc2967deed3", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ec40330-8957-4bb2-aecb-838a52f7125c", + "apim-request-id": "cea26595-4b66-459d-aafb-c8da8e8c91b1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:47 GMT", + "Date": "Mon, 25 Oct 2021 21:14:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ @@ -58,7 +58,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -74,6 +73,6 @@ "Variables": { "RandomSeed": "349892618", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json index 0d351b44a274..a39ad2ef678d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c616cd655b2f4344b210747a4af9fc39-c42cc1cda4e42046-00", + "traceparent": "00-d233872a4fa3d74192a7b8ef3edb537d-3296073a7583104b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "dd92af13693d6c6d10f5b45092a05fbe", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61bc678f-5424-4825-b4e6-a9790904bead", + "apim-request-id": "fd10ba1c-0173-4462-84aa-b15a4e878881", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:46 GMT", + "Date": "Mon, 25 Oct 2021 21:14:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "documents": [ @@ -89,6 +89,6 @@ "Variables": { "RandomSeed": "1310930461", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json index 8116b204dda0..54f526c2bcf5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d5681c8e58aa504db9be3866bdb230c5-446ca69c21a2ff48-00", + "traceparent": "00-a4bef67d7605ce41bbcbab0d9c973978-b56853db65b05e49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "161fb623980eba163f1211744629e747", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ee5138b-a2c8-47b0-98fb-905bd91becf7", + "apim-request-id": "938b640e-a194-43aa-8b85-b40490be23b6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:48 GMT", + "Date": "Mon, 25 Oct 2021 21:14:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "documents": [ @@ -89,6 +89,6 @@ "Variables": { "RandomSeed": "2016817382", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json index 1619c90727f4..42ac40d97347 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-79e9b2ca0054e64eb09b14bd93d1a61d-8b6f55a6be8d4949-00", + "traceparent": "00-6cdcea9c280ff54ba14e3adf73e40a3f-71342d1a07bcbc4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "02233abc1a851f8d7b73c3a9864f0660", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "20f6f2b3-e8b5-4db4-95a8-9529fb7c6670", + "apim-request-id": "e0069030-488b-4e22-8f5a-0e41878bd118", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:46 GMT", + "Date": "Mon, 25 Oct 2021 21:14:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "39669393", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json index bb2ca4cfec94..d7addcbeb6db 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-21f7aaec6766d340afdd55751dd614ac-a5baf32e2df1fe49-00", + "traceparent": "00-7183a50b25555a4180fb00a884d0e94c-2f79b29e020f594f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d3ffef96a22198e4e5a15a93f55c6a25", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "c338059f-dae5-463f-8c40-952c825426fa", + "apim-request-id": "0d9da6cd-0dca-4a58-a384-15617deb2be4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:48 GMT", + "Date": "Mon, 25 Oct 2021 21:15:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "356416899", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index b1171676c860..c3819dd93d19 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7d7fb5ce578a3348ae1185b1967abb22-ed1bcc26b6f1d548-00", + "traceparent": "00-236e7e9433e0dd429c44831582dfafc4-b12b70aa280ce64b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5bf1e93674612a2cd70f69188e2d39f7", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c943b7bb-07f5-48eb-8a14-3449820fd188", + "apim-request-id": "0e69d68d-6978-40a3-9339-59bb860f7bf3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:46 GMT", + "Date": "Mon, 25 Oct 2021 21:14:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "593241093", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json index 8cdcedac8a9c..3a9ab8bce9d2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8077068f264bec49abf174a629d605f9-9147883e2accea47-00", + "traceparent": "00-a8e28fb8c7fdb3439b889e62f84bf29e-3fd5b1860d63cd4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5dbd36794559c388c50dd26e725f8f67", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "77c8dc1b-e154-43b5-aa29-1e2ad2c91631", + "apim-request-id": "2a6e9d66-7fd0-479a-b909-2e8825b3eec3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:48 GMT", + "Date": "Mon, 25 Oct 2021 21:15:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "872837413", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json index a8de316eb7e0..852de0a13ab6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ee95dd0ff17ad4c8b0e1ff6529c3aee-bf14dea363e2ff40-00", + "traceparent": "00-cd6bb5f6eed08f42a0c68433ac356d7a-1ac259a9f094b941-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "481340828d769a0d6f19ecfe6b0d9666", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a05f8fa7-2953-4612-b341-cf2075d9b989", + "apim-request-id": "cf3de862-6a1e-43a5-9ea0-04dda12353fe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:46 GMT", + "Date": "Mon, 25 Oct 2021 21:14:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "statistics": { @@ -68,7 +68,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -88,6 +87,6 @@ "Variables": { "RandomSeed": "1134123605", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json index db0b8bf4d04c..15f3a7036ac3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0f0906489aa4ea4297b533ba72d95750-aba4cf824276b14d-00", + "traceparent": "00-da64a9ed674aa443840a6f4113c6cff9-ce46d4f85889af42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "fcabdefd3d51a89852601fc0d61f3468", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ad37721-9535-45ae-8ebc-481b12d2547f", + "apim-request-id": "1699ad5e-1137-4c81-8f38-e9832b886dcb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:48 GMT", + "Date": "Mon, 25 Oct 2021 21:15:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "statistics": { @@ -68,7 +68,6 @@ { "id": "2", "keyPhrases": [ - "Mi", "perro", "gato", "veterinario" @@ -88,6 +87,6 @@ "Variables": { "RandomSeed": "1658669752", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json index 4b655b2124de..c807a8530b5a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6a1147457f9a02488f1f0690c9fb5d9b-158328b2f358c447-00", + "traceparent": "00-2453585e8a84644987ee0b5b733fa224-90cdd51501d84c4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "b86575e1b38857965c8495535ac2b899", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76dd94e5-3361-4815-8777-3f15aa9c503f", + "apim-request-id": "d02cddfa-5857-4e53-8b46-d41e5c0981e7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:46 GMT", + "Date": "Mon, 25 Oct 2021 21:14:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ @@ -58,6 +58,6 @@ "Variables": { "RandomSeed": "4209270", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index 7b4da4da00e0..db9dc5c25b60 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6c82a42fbdde0542b3ef1772c45a7662-9c8e6b41a9fc3b41-00", + "traceparent": "00-2e2fc87ad9b06d42b69f370e7c4e6d16-abf768398fd97d45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f80f56a1c735d323972d5c2c674aed06", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "21696a04-e756-4821-9255-247b6eebc7b8", + "apim-request-id": "30257b62-0850-43bc-8629-c5270af70544", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:48 GMT", + "Date": "Mon, 25 Oct 2021 21:15:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "documents": [ @@ -58,6 +58,6 @@ "Variables": { "RandomSeed": "1076673025", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTest.json index b27385b00b55..b7472e6b30d4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-3d6a433d68018c4f8f18792d6c771b66-d456512e1a6d4a48-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-feefd74e2ffeff488e436e78ffafba91-0c8e959e2f45df49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0e2817fb33e29ab963263578057e277d", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33ef5458-719b-4e4b-823f-5a24b013612b", + "apim-request-id": "d8762a7c-8a25-47ad-a9f7-962d31ad6c71", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:47 GMT", + "Date": "Mon, 25 Oct 2021 23:04:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ @@ -57,6 +51,6 @@ ], "Variables": { "RandomSeed": "1552588999", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTestAsync.json index fd992620615f..fcfbc36404f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithAADTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "92", "Content-Type": "application/json", - "traceparent": "00-8f887da21f760f459c4661c7fcbc3328-80ea52545a925d4d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-8a436332dc98cc47a5fc4b0dd4e3b2bf-396db75650c8ab44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58b567fd93ed15e6b47cc604bb5a578a", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b72086a-0fad-4824-b067-da5afb42714b", + "apim-request-id": "960a71db-4285-4cb5-9319-ad3f256cf594", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:49 GMT", + "Date": "Mon, 25 Oct 2021 23:04:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [ @@ -57,6 +51,6 @@ ], "Variables": { "RandomSeed": "1515235516", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index fe2abe8d23fc..a5660bd85c93 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b25a37c3f6fd794c92c43bbd8b81f649-3a80433a53348942-00", + "traceparent": "00-b55608a95d792e44b34b1746bf12ac31-4c52f13432f06842-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "fee09dae9a1670151c1a3a802afd3e61", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17495d8d-7c62-4c16-aa53-ed58d2e43dc8", + "apim-request-id": "bf619d8e-5fda-4050-a461-d41865ca040b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:47 GMT", + "Date": "Mon, 25 Oct 2021 21:14:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ @@ -58,6 +58,6 @@ "Variables": { "RandomSeed": "462050848", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json index 15cf313a0976..3f1d3ed0b7c3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74c39412b94a92499b217406eb809203-a9b207a175590a4f-00", + "traceparent": "00-f72aa1f5cb9e194e9b080034ace0bb71-1cde42ce0dc46940-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "3bfc775f82d23a381e7a3b00a0305c6c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7e9f2b6-aa26-4388-ac1f-858377a01c39", + "apim-request-id": "8cf92c82-cf1b-494c-b8e4-1bffb3f3387e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:49 GMT", + "Date": "Mon, 25 Oct 2021 21:15:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ @@ -58,6 +58,6 @@ "Variables": { "RandomSeed": "1676133981", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithMultipleActions.json new file mode 100644 index 000000000000..15815fe6fa6a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithMultipleActions.json @@ -0,0 +1,1008 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "389", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-aef8291fbcd1a04d9bcc179b5d6c6d75-e2a5ca9f6a785a42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9fe92c25cc9e332abb31e6d62f326f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "1", + "text": "My cat and my dog might need to see a veterinarian.", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "loggingOptOut": true + }, + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs" + }, + { + "parameters": {}, + "taskName": "ExtractKeyPhrases" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a7c43bc5-0e93-466b-a911-5e169ae8cbf7", + "Date": "Mon, 25 Oct 2021 21:14:34 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "593e8a3c12521d4f48bb2223352ad499", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "169df323-265f-4540-beb6-7da1219e285f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:35 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": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:35Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7d6b6a6ce18aa9ea29c4fb7398199cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b7158a1d-4f6a-4ccf-84ad-65eefe957eb8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:36 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": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:35Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0db008fa0f80b0ec42e1b00d390ead81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0b9878a-afd3-446d-ae2b-f6b00332525c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14: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": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:35Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abc785df5e1d6dddec93b6b6c298e3c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5402a06a-bb60-4f04-8d21-e50cf2c89d82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14: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": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:35Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d285621c6799618ca2585361e907193", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e4307037-2446-4d4b-b3c2-0b568732f224", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:40 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": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:35Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4d8ceeeedb99caf2b4321ed5836eeaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f31ac488-8fa9-4072-8bbf-657d55e04950", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:41Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3ebe9fd80e618076c31e1f7d8a64f5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c1feafe9-4d59-46d8-991b-bc22931df57b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:42 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": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:43Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:43.0013783Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3c723212ebf340ea78b0136a52b3d94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27fc7055-b7cf-4424-beed-41eddde4368f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:44 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": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:43Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:43.0013783Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3439db378da46eacc6bf48880cb7c385", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "92603ed4-9575-4324-ae28-f5718fb47eb8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" + }, + "ResponseBody": { + "jobId": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:43Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:43.0013783Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35cbc5f4fa6eceeadbb73c5a7ed17341", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0a8e381d-4a7f-40a9-ab85-7ffe3ffbd5bd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "856" + }, + "ResponseBody": { + "jobId": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:43Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:43.0013783Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdc04cf31a6c94b776582d00e68527ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a41eed41-d0b5-4168-8022-96810d460573", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "jobId": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:43Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:43.0013783Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df427cc8085f3c26f16a59ec5152f0f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f752aa6e-69b9-46c9-add0-4bd58838e125", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "jobId": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:43Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:43.0013783Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c094064bc6f6d9180e37be16cde9e855", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6b1e854b-09bd-4616-9682-00cff388b888", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "72" + }, + "ResponseBody": { + "jobId": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:43Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:43.0013783Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02924c90938eebe226840c02c0ca4224", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f3ccf4f-bb42-4e07-892b-23c2471b49df", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "86" + }, + "ResponseBody": { + "jobId": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:43Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:43.0013783Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/492a9471-a8a6-402d-9853-126dfbba234d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfb4376867f002f96368d127490f6f07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b04bba97-48ca-428d-b211-0093143559fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:14:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3979" + }, + "ResponseBody": { + "jobId": "492a9471-a8a6-402d-9853-126dfbba234d", + "lastUpdateDateTime": "2021-10-25T21:14:54Z", + "createdDateTime": "2021-10-25T21:14:35Z", + "expirationDateTime": "2021-10-26T21:14:35Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:14:43.0013783Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:14:54.1629129Z", + "taskName": "ExtractKeyPhrases", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "512449481", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithMultipleActionsAsync.json new file mode 100644 index 000000000000..8658cf3dfcb7 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithMultipleActionsAsync.json @@ -0,0 +1,873 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "389", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-c9f68bc07d50df49a6a7fd5ec31d67a4-1c60f26fc11a9c49-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e804ae24ddafd4e332414fdc826fccc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "1", + "text": "My cat and my dog might need to see a veterinarian.", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "loggingOptOut": true + }, + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs" + }, + { + "parameters": {}, + "taskName": "ExtractKeyPhrases" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "d057e92d-78df-49b3-ab33-8429d3f7760b", + "Date": "Mon, 25 Oct 2021 21:15:02 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "353" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed609702e874cbd93fd246e6fa53645a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4bded90-f82c-4bb9-b793-05cbfdbd66e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15: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": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:03Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb70e0500624b1179876a86fb55e7e34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea725baa-58dc-4a79-94e5-2b597e766abf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15: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": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:04Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b58f67e5092afa6870b5ff08076802e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6be6e9ef-dd5e-4e53-9697-e00984c8849a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:04Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7adbac041b5fca880ae54fd406916e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "176c535d-d47e-4088-a27d-6e71772f6292", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:07 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": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:04Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93001153afc3463077764a6f060faa30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e14d0dc2-f984-4c17-ad83-d56ab1672cf5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:08 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": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:04Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "faafc77396b1a47ebf93347bb46bb906", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "45b3462c-cf5b-4156-acda-abded1ede303", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15: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": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:04Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5b41f9f6f67101c8966703ff638f571", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a05b6154-44c5-486a-9f73-479d2ad916ad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:10 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": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:04Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "788924031bbabd2f925bd3307ab4920c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dcd48649-7017-4902-8aa7-2f0c11bbf5f1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:11 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": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:04Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7d044bcb55a03c8aa9f704a263fae86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5a7a0c8d-e542-481f-a123-31d4a55bb9de", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "72" + }, + "ResponseBody": { + "jobId": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:12Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:15:12.5745517Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9078c39e41e1834cf0f7620c9cec95d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "51ea373f-2443-4c13-a2d6-0e16b91b4210", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:14 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": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:12Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:15:12.5745517Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b28263d40d684e165b85ce1baae49653", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8fdb82e3-c65d-4035-ada2-b2aa4b3ab229", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" + }, + "ResponseBody": { + "jobId": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:12Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:15:12.5745517Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6914cad023b7b2af74cf76352bc67bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bcfe0cfd-26e9-42a3-96be-3ed3f9120ecc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "435" + }, + "ResponseBody": { + "jobId": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:12Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:15:12.5745517Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2769b09fcbc901ead2a345c7230d90b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1e891bf5-88c2-4a99-8836-b696a864e4c7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "jobId": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:12Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:15:12.5745517Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f5e0e60de5ad1993907ba1b16b3fb9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2e0f2180-bd3e-4fed-bca6-4a44001ec5a5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "115" + }, + "ResponseBody": { + "jobId": "5b7451fb-7ebc-4c30-9cde-24dd16e03de5", + "lastUpdateDateTime": "2021-10-25T21:15:19Z", + "createdDateTime": "2021-10-25T21:15:02Z", + "expirationDateTime": "2021-10-26T21:15:02Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:15:12.5745517Z", + "taskName": "ExtractKeyPhrasesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:15:19.3298461Z", + "taskName": "ExtractKeyPhrases", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "cat", + "dog", + "veterinarian" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1655572524", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index 11515a343f44..624a594ee6ed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?model-version=2020-07-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?model-version=2020-07-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-62f390a31cb0194aa03a166b1db4d7c7-377abfe5a55f6146-00", + "traceparent": "00-75f9fe5bc683c24ca7ae90e4f590c7d2-32d940a3087d4f44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "7a99e78b28bbdc34334c788be87edcb8", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60ae679a-88fe-400e-bbb0-278752bccb72", + "apim-request-id": "3d0b1a24-1d4e-41b2-8b00-d3575dd98a8b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:47 GMT", + "Date": "Mon, 25 Oct 2021 21:14:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ @@ -64,6 +64,6 @@ "Variables": { "RandomSeed": "591698428", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index c722a2a83644..0e7461a69936 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/keyPhrases?model-version=2020-07-01\u0026showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/keyPhrases?model-version=2020-07-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8805839acd67244fa6b604c65b8685d9-b866aa1e4abee648-00", + "traceparent": "00-6c4416cdb366ac4aaf9b3f2f61d4e293-976b91f4f709fe48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d687a16b6a26ea445556f8b3c125785e", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8022320-afa1-4aeb-bed2-95b32c93c20d", + "apim-request-id": "e5ecec31-e472-4537-b365-e8f5462ab2e2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:49 GMT", + "Date": "Mon, 25 Oct 2021 21:15:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [ @@ -64,6 +64,6 @@ "Variables": { "RandomSeed": "1154109326", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..5984d194791c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f6a8fe80dbc2a34086eed5da953e6dd1-7b18f0bbc324b84d-00", + "traceparent": "00-b6e7824dbadbb2499874ec6084077573-ccbea9543a714c48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "a87d416d7cb808934968999aecf2d457", "x-ms-return-client-request-id": "true" @@ -47,18 +47,18 @@ }, "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": "d947d75b-0b51-496f-bb26-aa5e4fc549ca", + "Date": "Mon, 25 Oct 2021 21:15:20 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "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": "210" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,8 +67,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d0aff37bc9b173e79cb77d81c11e5345", "x-ms-return-client-request-id": "true" @@ -76,2129 +76,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a2d5cf6-c726-40cf-9edf-5a46163fe649", + "apim-request-id": "14eeea2e-9518-4545-83e7-4f40e8bbdbdf", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:41:51 GMT", + "Date": "Mon, 25 Oct 2021 21:15:20 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" + "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": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2208,7 +100,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2217,31 +109,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "3ec7c9b384064b0ebc3edb8b54e0b140", + "x-ms-client-request-id": "cb3f8bbc1ebf4cdee0fe8767ea0d5e4d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a6b737a-b5f5-4089-a58a-cf7e0949de2c", + "apim-request-id": "0764fe7e-b815-4231-af0d-7f3feb909aa8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:43 GMT", + "Date": "Mon, 25 Oct 2021 21:15:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "16" }, "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": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2251,7 +142,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2260,31 +151,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "0c73b8ba98796070e9dfb18af407ba6e", + "x-ms-client-request-id": "ec8bf51a4a4fa3ed5a0a0c01fe11462a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e43cc31e-bad6-43f0-b880-744a7cc5affc", + "apim-request-id": "104b91af-68fa-4326-9fea-332f0290c36a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:44 GMT", + "Date": "Mon, 25 Oct 2021 21:15:24 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": "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", + "jobId": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2294,7 +184,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2303,31 +193,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "0d3e294f92890a44fc80a8aeb9d48661", + "x-ms-client-request-id": "60de531408b35d981562efb24180888e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22f9f854-a428-421a-ad04-fde5034b4e24", + "apim-request-id": "5f2006ef-ce94-42a0-83d1-34ab7ce8cce6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:45 GMT", + "Date": "Mon, 25 Oct 2021 21:15:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "26" }, "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": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2337,7 +226,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2346,31 +235,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "2f58d6e8ea7d1a5858675527d38457b4", + "x-ms-client-request-id": "cc673058669272f59d9b71b411dc4ecf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27a70d92-0b8a-4b71-9e42-cc6d028494e5", + "apim-request-id": "bf093de5-d044-42a9-a74f-2474f00d3b1f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:46 GMT", + "Date": "Mon, 25 Oct 2021 21:15: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": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", + "jobId": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2380,7 +268,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2389,31 +277,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "2b3b6c83a3a228b6736910f8efc2a615", + "x-ms-client-request-id": "96525db8fd2f119a5d2ed7ed5a3a61d9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "230d066b-372f-4ac3-9e28-038c60cfb243", + "apim-request-id": "69ecd48d-c0be-485d-a6fa-8e43d9d8976f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:47 GMT", + "Date": "Mon, 25 Oct 2021 21:15:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "2f10248f-c14c-43ab-8d6d-feee56c372cc", - "lastUpdateDateTime": "2021-08-06T06:41:52Z", - "createdDateTime": "2021-08-06T06:41:51Z", - "expirationDateTime": "2021-08-07T06:41:51Z", + "jobId": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2423,7 +310,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2432,31 +319,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "1ea150588baf65f1d024b4223c1d3777", + "x-ms-client-request-id": "cea87d817aaaae975e6cc21897e34b38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "baf36bce-42a5-438e-b45b-15c43aa7415d", + "apim-request-id": "f4881f9d-c207-4f68-91d5-b55b97374fb6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:48 GMT", + "Date": "Mon, 25 Oct 2021 21:15: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", + "jobId": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2466,7 +352,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2475,31 +361,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "4d2af4295a9844be1f2fbb14da5f2a96", + "x-ms-client-request-id": "e4fa2014f12d5a5f96556f648f071762", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37224c74-1ff6-46cf-82a0-026bf154feed", + "apim-request-id": "e1000bc9-a45b-42dc-bf6a-12da24ff431e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:49 GMT", + "Date": "Mon, 25 Oct 2021 21:15:29 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", + "jobId": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2509,7 +394,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2518,31 +403,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "82ce3fc038e2f8047bd55b7eee94eb55", + "x-ms-client-request-id": "943397397f343d24c5a438c33a817a79", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad20032b-1d01-426a-b584-11db1692ad6c", + "apim-request-id": "b786e3b9-b583-45b0-9697-914f18a6feb7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:50 GMT", + "Date": "Mon, 25 Oct 2021 21:15: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": "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": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2552,7 +436,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2561,31 +445,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "fbcf98325998fd7c915cfe80cfdc8b70", + "x-ms-client-request-id": "39d99fe37d4090ac1d4d38550a331f57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61ae8028-829d-43e5-9acd-e65850eceadc", + "apim-request-id": "14777886-d622-474d-acba-598f2fdaf397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:51 GMT", + "Date": "Mon, 25 Oct 2021 21:15:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "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": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2595,7 +478,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2604,31 +487,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "fc611ef9b44ef095ef31d2c2ff40558b", + "x-ms-client-request-id": "ffdf5f54b7b09403fcbc1f89b99c2014", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "262a0f21-5949-493b-9051-7fe20ed63f3e", + "apim-request-id": "15c6a1ef-e8ee-4da3-a4e8-bca106fa3fdf", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:52 GMT", + "Date": "Mon, 25 Oct 2021 21:15:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "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": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:21Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -2638,7 +520,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/2f10248f-c14c-43ab-8d6d-feee56c372cc", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2647,31 +529,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "42e265432e9067fec3d1f1863a84299e", + "x-ms-client-request-id": "ef80f5dade2dbc22eba276e646cf3391", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ea583fc-459f-4a9d-bbca-86a08ad5cecc", + "apim-request-id": "a2046e59-63c8-428b-a8a6-c8acceff55df", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:53 GMT", + "Date": "Mon, 25 Oct 2021 21:15:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-envoy-upstream-service-time": "324" }, "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": "8f9b4aec-8bf2-4ea7-b46e-919c7cd8f580", + "lastUpdateDateTime": "2021-10-25T21:15:35Z", + "createdDateTime": "2021-10-25T21:15:21Z", + "expirationDateTime": "2021-10-26T21:15:21Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -2679,43 +560,42 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:42:53.9739447Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:15:35.4226149Z", "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 +604,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 +649,6 @@ "Variables": { "RandomSeed": "721611658", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..5cb20fae1478 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9ccca4a1db9e824aa8cd67d4c8a2edec-a8e6bbd599a8ff43-00", + "traceparent": "00-93ca9e6d14ac64418b6f1fa7be6220be-3736ba7028e6064b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "6d5f2ae36c2f32a28821252a0ee4c14c", "x-ms-return-client-request-id": "true" @@ -47,18 +47,18 @@ }, "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": "b4384b6b-584a-46cd-87e8-c13769657389", + "Date": "Mon, 25 Oct 2021 21:17:05 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "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": "212" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,8 +67,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "527d763ade69ecabff5c3ba7f9ce1a12", "x-ms-return-client-request-id": "true" @@ -76,22 +76,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83da5348-96c0-479a-b246-6df605edff87", + "apim-request-id": "87264bf8-823b-4371-9e9b-0b47678acbc9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:35 GMT", + "Date": "Mon, 25 Oct 2021 21:17:05 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": "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": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -101,7 +100,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -110,8 +109,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "49cea572b2dcc4e613981d27af531c4b", "x-ms-return-client-request-id": "true" @@ -119,22 +118,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "702467c7-b967-4f07-ba83-073618ffdb30", + "apim-request-id": "f5c79528-636c-4801-96c9-a42ed0543399", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:36 GMT", + "Date": "Mon, 25 Oct 2021 21:17:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "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": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -144,7 +142,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -153,8 +151,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "ff172f6780c105077e726dd230fa39b9", "x-ms-return-client-request-id": "true" @@ -162,22 +160,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "140413e3-d367-4c53-9290-6a476a21ba84", + "apim-request-id": "a98a3fbb-7a75-4ff2-80f5-fc2e142bd8f9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:37 GMT", + "Date": "Mon, 25 Oct 2021 21:17:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", + "jobId": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -187,7 +184,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -196,8 +193,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "68b81206771588708fb93fd1c1843dac", "x-ms-return-client-request-id": "true" @@ -205,22 +202,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76268ef8-a63e-40cd-a072-9ed7db15f7fa", + "apim-request-id": "f187e8de-c36c-43c5-bddc-1eff454328f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:38 GMT", + "Date": "Mon, 25 Oct 2021 21:17:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "102" }, "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": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -230,7 +226,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -239,8 +235,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "ca3ff0401ab6f1509dc9cb6944139318", "x-ms-return-client-request-id": "true" @@ -248,22 +244,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c743540d-93a2-4cb5-8a4a-4bf6d4299552", + "apim-request-id": "22458c58-2169-4571-a5dd-a588045bed00", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:39 GMT", + "Date": "Mon, 25 Oct 2021 21:17:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "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", + "jobId": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -273,7 +268,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -282,8 +277,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "9d20635eb39af035be8f6f08413644f9", "x-ms-return-client-request-id": "true" @@ -291,22 +286,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39b9ca0d-073b-4c68-ad08-de18a65c7204", + "apim-request-id": "63214c4c-2cf6-42b7-9a9a-65fd1f47e95b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:40 GMT", + "Date": "Mon, 25 Oct 2021 21:17:12 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": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", + "jobId": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -316,7 +310,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -325,8 +319,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "4092c1356fbaeb03c1c6ca4cac06437c", "x-ms-return-client-request-id": "true" @@ -334,22 +328,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e5e323c-6dc1-453c-9d8f-6049799ed243", + "apim-request-id": "c7115d9e-4910-4a05-b9c0-8d40eadaaddd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:41 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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": "bacdacae-0528-4fb2-8229-37b48a0a6642", - "lastUpdateDateTime": "2021-08-06T06:43:37Z", - "createdDateTime": "2021-08-06T06:43:35Z", - "expirationDateTime": "2021-08-07T06:43:35Z", + "jobId": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -359,7 +352,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -368,8 +361,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5d7226259f648d11ba4f0b26aa48b067", "x-ms-return-client-request-id": "true" @@ -377,22 +370,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0b47027-af4c-419d-a66a-a8c25b3c07be", + "apim-request-id": "7aa84dc5-2bb6-4d65-a6ec-54271cdd6744", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:42 GMT", + "Date": "Mon, 25 Oct 2021 21:17:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "19" }, "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": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -402,7 +394,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -411,8 +403,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "8334d1845381ef5e6034dcd3e8e944b7", "x-ms-return-client-request-id": "true" @@ -420,22 +412,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11cc606d-ae24-42e8-b2f4-ee9c3d5363d5", + "apim-request-id": "5467d660-bfd2-43ff-8ed6-67dd212c6f8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:43 GMT", + "Date": "Mon, 25 Oct 2021 21:17:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "53" }, "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": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -445,7 +436,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/bacdacae-0528-4fb2-8229-37b48a0a6642", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -454,8 +445,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "1be3f34ce6c49595b004856a63dc4179", "x-ms-return-client-request-id": "true" @@ -463,22 +454,189 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e66b6dc-4a63-4b40-9617-9a01dce8e411", + "apim-request-id": "c53d53dc-042e-467e-b718-7a05abd2c701", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:44 GMT", + "Date": "Mon, 25 Oct 2021 21:17:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "18" }, "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": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dac76316c0d2d2fac782fd2fc33da4d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f0970768-5ee1-4abd-a384-a1cffd0d21b5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17: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": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6da540b95659ea23c9ed27dcdf38c83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27ecc01c-db77-4d23-9d2f-3b4d84adbecc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17: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": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84bd63f36a218be4f9105341e966d272", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "518f0160-883a-4f0a-b4e1-d06bd3ea5870", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:06Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e5fb4608a028114c0299d34ed7d05d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "750b2b0f-531a-4ae4-8d3f-7baf6939fff7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" + }, + "ResponseBody": { + "jobId": "b3328b65-8b3a-4e4e-8bcb-a0f71af403ab", + "lastUpdateDateTime": "2021-10-25T21:17:23Z", + "createdDateTime": "2021-10-25T21:17:05Z", + "expirationDateTime": "2021-10-26T21:17:05Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -486,43 +644,42 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:43.9472582Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:17:23.2618747Z", "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": [] @@ -531,34 +688,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 +733,6 @@ "Variables": { "RandomSeed": "1033345447", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..6d61e26cbc9e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-41480462d9019247b563b7a88e03010d-4d4f0db16ed35849-00", + "traceparent": "00-27e44e10a41c7745a9c5b9102882796f-1d24b07f227a174b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "bfc113963668fe26b5d07e43e5ef9a18", "x-ms-return-client-request-id": "true" @@ -47,18 +47,18 @@ }, "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": "0ed1391c-0386-4247-bbb9-309eba1ea1d4", + "Date": "Mon, 25 Oct 2021 21:15:36 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "223" + "x-envoy-upstream-service-time": "201" }, "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,8 +67,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "7bf84dfe1eab8869d6053557d69142cd", "x-ms-return-client-request-id": "true" @@ -76,22 +76,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a67b84c-fc91-4c39-ad77-ca8f4b551d13", + "apim-request-id": "664a637f-9908-4f62-8d12-516bbd87a000", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:54 GMT", + "Date": "Mon, 25 Oct 2021 21:15: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": "7" }, "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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -101,7 +100,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -110,8 +109,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "75316a4f49761d6bfa0d0d83fe3a0076", "x-ms-return-client-request-id": "true" @@ -119,22 +118,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "613f6cbc-aa73-4d5a-9c30-82169068556b", + "apim-request-id": "f9e24032-1585-4da4-b457-530a669e1a53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:56 GMT", + "Date": "Mon, 25 Oct 2021 21:15:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "37" }, "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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -144,7 +142,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -153,8 +151,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "e70eb2c015287861aa39e96301ce2824", "x-ms-return-client-request-id": "true" @@ -162,22 +160,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9488c0dc-3db5-4f4f-9431-617ba2ef112e", + "apim-request-id": "2fb9d6c8-23f4-4ea7-85c0-819c1eb5edfa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:57 GMT", + "Date": "Mon, 25 Oct 2021 21:15:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -187,7 +184,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -196,8 +193,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "7bf4b08d25bdb4a2e1da809e10e6899b", "x-ms-return-client-request-id": "true" @@ -205,22 +202,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3bbdb7ab-b3d0-4d56-bf46-f55204379c84", + "apim-request-id": "83e46875-e75b-409f-bc5a-4ac82008b6ae", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:58 GMT", + "Date": "Mon, 25 Oct 2021 21:15:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" }, "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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -230,7 +226,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -239,8 +235,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "2496bf055a823aa508b9ca3c60081c2c", "x-ms-return-client-request-id": "true" @@ -248,22 +244,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37644dc0-6a9c-46f1-9ece-f8b732617fbe", + "apim-request-id": "98632c81-7bd5-4332-9ab2-68e7b67c0a23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:42:59 GMT", + "Date": "Mon, 25 Oct 2021 21:15:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -273,7 +268,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -282,8 +277,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "4ef5e9e584469bb80f59054e94c367c4", "x-ms-return-client-request-id": "true" @@ -291,22 +286,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d11160f0-a7d9-422c-a6fd-f572bc37d146", + "apim-request-id": "fccedac9-a2dc-492e-a3ef-324fd9350502", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:00 GMT", + "Date": "Mon, 25 Oct 2021 21:15:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { - "jobId": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:57Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", + "jobId": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -316,7 +310,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -325,8 +319,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "415d4eb0033732a10bba72045a6554d9", "x-ms-return-client-request-id": "true" @@ -334,22 +328,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9001f030-0d97-4582-a44e-ceef9523e7d3", + "apim-request-id": "0199ce01-e656-46f1-97a1-5924c10526d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:01 GMT", + "Date": "Mon, 25 Oct 2021 21:15:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "27" }, "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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -359,7 +352,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -368,8 +361,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "26b854be3af0805407fb14295457a544", "x-ms-return-client-request-id": "true" @@ -377,22 +370,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e924196-e092-4692-b95f-5b4732e064dd", + "apim-request-id": "d0f1c9fa-f2ed-4c3a-874d-00ce1c9011e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:02 GMT", + "Date": "Mon, 25 Oct 2021 21:15:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "7e96b62b-7901-409e-af25-8fe93abc5406", - "lastUpdateDateTime": "2021-08-06T06:42:57Z", - "createdDateTime": "2021-08-06T06:42:54Z", - "expirationDateTime": "2021-08-07T06:42:54Z", + "jobId": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -402,7 +394,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -411,8 +403,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "128c0651daaae1f548c2438c11b341a9", "x-ms-return-client-request-id": "true" @@ -420,22 +412,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "283084c1-9da0-4ffb-8226-1fbd6ebc4dc1", + "apim-request-id": "e3c4b321-36de-456e-84c0-06891fa4cbc4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:03 GMT", + "Date": "Mon, 25 Oct 2021 21:15: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": "10" }, "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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -445,7 +436,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -454,8 +445,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "408f2c04400a75d3f9dd3a3cef78ddb4", "x-ms-return-client-request-id": "true" @@ -463,22 +454,357 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb291fd4-eb89-47c6-bd10-2f84cdbd4969", + "apim-request-id": "3da5beee-ef31-41fa-b141-9008a1e483c5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15: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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53b32e1442d9e32e5fd7de2ef7c76e53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c18a14cd-0521-4b90-9ea5-2fbb0d209da7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:49 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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28246aba64c7103a321718cda0b8f2d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3da81b1e-d5a6-4fe2-a196-b84591eb86a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15: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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3788fe4ed00c2d0feace13362a57d31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "96912f1a-3f39-4605-af94-c3b0ad39aa5a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8481e76eb553afecf4a321c1296043a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "08ad5201-860e-46e1-9f6f-4e3f3fe8e546", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:52 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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68490ee58b4fcc539a62291b8306ae8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "97c1aab3-4e49-47e4-b928-7f5363519f52", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15: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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b85fe69a6d362f7ca2c8ef5ccc0f989d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b9fabfe1-2f09-47ca-a8f7-fd233fe249e2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:04 GMT", + "Date": "Mon, 25 Oct 2021 21:15:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "178" + "x-envoy-upstream-service-time": "8" }, "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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "534e3a68145be3e293b5eaf18bd12bed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f8f066b2-0aac-4579-8748-e0bc156ce052", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:57 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": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:36Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/39ae5835-071f-45d7-a24c-a536f200a4f3?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "422793f58a01776f911ac6879bf6008a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "98a8ffbd-31c6-40fa-ae7b-ff1e610fcdeb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:15:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "jobId": "39ae5835-071f-45d7-a24c-a536f200a4f3", + "lastUpdateDateTime": "2021-10-25T21:15:57Z", + "createdDateTime": "2021-10-25T21:15:36Z", + "expirationDateTime": "2021-10-26T21:15:36Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -486,8 +812,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:04.0321509Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:15:57.7469525Z", "state": "succeeded", "results": { "statistics": { @@ -504,35 +829,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 +870,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 +915,6 @@ "Variables": { "RandomSeed": "1814199441", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..c0f7fd5eb2fb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4d03b39f3ee3d74ba2686cebebd3935c-e430eb841451df4d-00", + "traceparent": "00-fb02bd9296e2044e9d5a7c1c324b5a9f-c8d04140e7de564b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "fe1d7a1a6f9ae5a039fc8ef54aff182a", "x-ms-return-client-request-id": "true" @@ -47,18 +47,18 @@ }, "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": "0e9c3c2d-086b-4461-9aff-22d81569b27a", + "Date": "Mon, 25 Oct 2021 21:17:24 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "256" + "x-envoy-upstream-service-time": "203" }, "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,8 +67,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "08ea3b4ae4e0a673ea7be2927bc61d1b", "x-ms-return-client-request-id": "true" @@ -76,409 +76,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91e1f1d1-3716-46db-9254-e1f3ff29d009", + "apim-request-id": "4b7c8b98-f143-4b3c-a433-0e9c3c7ac506", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:44 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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": "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": "e3d7c4e5354315e1886b2f32a319b90e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "384b67b7-989f-48ed-9c08-61900092df02", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:45 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "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" + "x-envoy-upstream-service-time": "13" }, "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": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -488,7 +100,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -497,246 +109,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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-client-request-id": "e3d7c4e5354315e1886b2f32a319b90e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "023069e6-17e5-44bd-baff-33a7fbbb46de", + "apim-request-id": "9d32019a-3bf2-4bc7-bb9b-119cc7c8962e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:00 GMT", + "Date": "Mon, 25 Oct 2021 21:17:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "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", + "jobId": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -746,7 +142,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -755,31 +151,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "c696a04bb81bf669ab22f5e59da94bf0", + "x-ms-client-request-id": "393298643a6736400676141e8d0d6973", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "362418e9-214d-4aaf-b0e7-05824d9e480e", + "apim-request-id": "f4709e75-3453-473f-be38-4dee95d1f606", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:01 GMT", + "Date": "Mon, 25 Oct 2021 21:17:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", + "jobId": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -789,7 +184,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -798,31 +193,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "ac9410a8bb615ea64e0472fa7b6d04f7", + "x-ms-client-request-id": "851072de352815e659d57f74b44003d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c8684c0-89c6-4186-bd66-e055f9b484f3", + "apim-request-id": "5dfe7254-f7a3-43e1-8e42-20ce1977a8c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:02 GMT", + "Date": "Mon, 25 Oct 2021 21:17:28 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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", + "jobId": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -832,7 +226,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -841,31 +235,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "4dca13d46264bcd99d3915e379738b6d", + "x-ms-client-request-id": "e32ed3c2e494abb483a1dccc21c3887a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c70d9829-a582-459c-a053-ab4bfc54f826", + "apim-request-id": "1defd636-3415-4c8b-943c-1b88ff7730a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:03 GMT", + "Date": "Mon, 25 Oct 2021 21:17:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "120" }, "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": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -875,7 +268,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -884,31 +277,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "7f7e0baab5389029fa387716456e7a3e", + "x-ms-client-request-id": "3154bc0233092fe6b11ddf91bacb81c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19cdbbf0-bac8-4ad7-8d76-c7400d2a67c3", + "apim-request-id": "fbd61e68-6689-49de-a00b-9da32059f395", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:04 GMT", + "Date": "Mon, 25 Oct 2021 21:17:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "13" }, "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": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -918,7 +310,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -927,31 +319,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "8910fe1dfedf458c37d70f28a5c3e4db", + "x-ms-client-request-id": "b95b437385defadfbe6401875819f396", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "704aa696-5a16-46ec-b70a-24ed6d210e97", + "apim-request-id": "6f5e9d02-6635-448e-849a-b1d14775c4c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:05 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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-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", + "jobId": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -961,7 +352,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -970,31 +361,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "6f50057885ee1fbfea3a532bebc2772e", + "x-ms-client-request-id": "f872044cd2ec8fc6ecff32760422f0b8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22914cb1-49ff-4562-9ebc-7e63d371c068", + "apim-request-id": "a90f26f0-499c-4cce-982a-794c370e9230", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:06 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", + "jobId": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -1004,7 +394,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1013,31 +403,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "7bc5d6be0162ac8d7e394760a601ea36", + "x-ms-client-request-id": "de58161fce687c9bdd5a72a4315fd697", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8e81693-d463-4771-91a5-da9f42da9186", + "apim-request-id": "8473e030-64ae-4897-8d5d-4b62a628ee5d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:07 GMT", + "Date": "Mon, 25 Oct 2021 21:17:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "11" }, "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": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -1047,7 +436,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1056,31 +445,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "3f9e9c540b1e984f3ff19fa4ab615975", + "x-ms-client-request-id": "b545492a8859a1d97ccbcddf5368f69c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97180c8d-9e0c-4a69-935c-daa7d2c14b42", + "apim-request-id": "b199ee7f-9910-43b3-b562-f673af88ac43", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:08 GMT", + "Date": "Mon, 25 Oct 2021 21:17:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "11" }, "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": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -1090,7 +478,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1099,117 +487,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "cf69e06069fd767877a3f1b43d5e78e8", + "x-ms-client-request-id": "4167497414c17d2d68f51b915f215e8c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fc2d4ef6-a7af-4af0-a94e-c4b8dd6624de", + "apim-request-id": "18a84e05-e5ff-4977-9d3c-e931e41099d6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:09 GMT", + "Date": "Mon, 25 Oct 2021 21:17:37 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", - "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": "c600d2df1b97ea392327c87a199a5ae0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1bf38504-ff82-4af4-9e10-b679886b1721", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "3b814d4e-2f4a-406f-89cc-e93356a43f9d", - "lastUpdateDateTime": "2021-08-06T06:43:47Z", - "createdDateTime": "2021-08-06T06:43:44Z", - "expirationDateTime": "2021-08-07T06:43:44Z", + "jobId": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:24Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -1219,7 +520,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/641c1f99-93c1-43e5-bccc-088315ab0d90?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1228,31 +529,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "8e54b6780b892850cfb548d02c07158e", + "x-ms-client-request-id": "ba4c9a283add965e3cb7619c01bc2874", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5bd9782-0df5-4fbd-b1c6-01c36563e6f7", + "apim-request-id": "e65e4062-2c31-4976-8b49-feb219e79c06", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:13 GMT", + "Date": "Mon, 25 Oct 2021 21:17:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-envoy-upstream-service-time": "777" }, "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": "641c1f99-93c1-43e5-bccc-088315ab0d90", + "lastUpdateDateTime": "2021-10-25T21:17:38Z", + "createdDateTime": "2021-10-25T21:17:24Z", + "expirationDateTime": "2021-10-26T21:17:24Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -1260,8 +560,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:44:12.8773924Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:17:38.4433717Z", "state": "succeeded", "results": { "statistics": { @@ -1278,35 +577,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 +618,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 +663,6 @@ "Variables": { "RandomSeed": "395657227", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..1306de411dd6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-db04673eacb04049ba543d973381dda9-47ef89e892ad2b48-00", + "traceparent": "00-8407c3a78e2973489bd89789b1003efb-e0628f21d159fd4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f3d9198f505e19b3a58d50518164f79d", "x-ms-return-client-request-id": "true" @@ -47,18 +47,18 @@ }, "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": "797d02ac-047b-4d48-85a1-0ebc5578cc57", + "Date": "Mon, 25 Oct 2021 21:15:59 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "231" + "x-envoy-upstream-service-time": "405" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,8 +67,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "cd73043ed1a6b229132eee9711f3380a", "x-ms-return-client-request-id": "true" @@ -76,22 +76,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2541e370-8e38-437d-9978-cb22b7bd979a", + "apim-request-id": "1e94a080-57ab-48b3-8201-32e90bac4e41", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:04 GMT", + "Date": "Mon, 25 Oct 2021 21:15:59 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": "38" }, "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", + "jobId": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:15:59Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -101,7 +100,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -110,8 +109,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5986c0a842081108e68e6679d439d993", "x-ms-return-client-request-id": "true" @@ -119,22 +118,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f5a352b-95ce-429d-a76a-4b90f6f66e5c", + "apim-request-id": "285c6a00-f2ef-42cf-bea8-ebd9a95cd2d4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:05 GMT", + "Date": "Mon, 25 Oct 2021 21:16:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "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", + "jobId": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:15:59Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -144,7 +142,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -153,8 +151,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "2e009dff5c37bdf8f027df30611b08b1", "x-ms-return-client-request-id": "true" @@ -162,22 +160,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d980a9cd-0695-4a15-bfcc-7636a7ce9ca0", + "apim-request-id": "78aa48c2-f333-42bc-a8cc-2607f0d00c85", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:06 GMT", + "Date": "Mon, 25 Oct 2021 21:16:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "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", + "jobId": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:15:59Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -187,7 +184,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -196,8 +193,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "c1a846549dddfc94fb62e6176ab0ded9", "x-ms-return-client-request-id": "true" @@ -205,22 +202,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "667c68d1-5f31-4ea5-a7ef-1e87d1024e7f", + "apim-request-id": "f1f76521-11e6-4553-8190-cc73040dbbfa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:07 GMT", + "Date": "Mon, 25 Oct 2021 21:16:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "91" }, "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": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:15:59Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -230,7 +226,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -239,8 +235,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "74985b540af34cd2c8c869e162d7afcb", "x-ms-return-client-request-id": "true" @@ -248,22 +244,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8309ac1-b095-4fe3-91b3-0692c517807c", + "apim-request-id": "1b376e0b-6cdb-4d18-9079-923d502710b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:08 GMT", + "Date": "Mon, 25 Oct 2021 21:16:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "183" }, "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": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:15:59Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -273,7 +268,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -282,8 +277,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "8d24b586189061b5080432d575e0533f", "x-ms-return-client-request-id": "true" @@ -291,22 +286,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a355ec56-1cce-4343-9233-b5a47f8c3dd9", + "apim-request-id": "e47c1992-623b-4557-9e2d-5fbad8cd5c93", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:09 GMT", + "Date": "Mon, 25 Oct 2021 21:16: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": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:07Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", + "jobId": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:15:59Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -316,7 +310,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -325,8 +319,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "05db064894834abd735cf81534b39a23", "x-ms-return-client-request-id": "true" @@ -334,22 +328,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4566cb0-86f8-4e79-bdc8-3dbaf8350bab", + "apim-request-id": "04f341c5-7b1b-4215-a8b4-1e6266e887a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:10 GMT", + "Date": "Mon, 25 Oct 2021 21:16: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": "11" }, "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": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:15:59Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -359,7 +352,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -368,8 +361,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "b5911bb2508b3c48a5376befd7fcd6e8", "x-ms-return-client-request-id": "true" @@ -377,22 +370,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "80a3adbc-33d5-4011-8ded-7443da546f85", + "apim-request-id": "a965c24b-83d1-4e5a-87c9-2376a12c8a9e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:11 GMT", + "Date": "Mon, 25 Oct 2021 21:16: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": "67c17fd6-d64c-4987-aa1f-838b0f4e014f", - "lastUpdateDateTime": "2021-08-06T06:43:07Z", - "createdDateTime": "2021-08-06T06:43:04Z", - "expirationDateTime": "2021-08-07T06:43:04Z", + "jobId": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:15:59Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -402,7 +394,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -411,8 +403,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5c982975a9fcf147f7da193420a02c54", "x-ms-return-client-request-id": "true" @@ -420,22 +412,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52462a61-bcd5-4d6b-a216-8114d5fdb75e", + "apim-request-id": "9340bb6e-18eb-47f5-8b56-24fd635b9247", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:12 GMT", + "Date": "Mon, 25 Oct 2021 21:16:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "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", + "jobId": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:15:59Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -445,7 +436,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/67c17fd6-d64c-4987-aa1f-838b0f4e014f", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2c7abb9e-3df4-45bf-8710-138181e46b42", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -454,8 +445,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "59230e6a9e4ef8b4bd9f5f4b28ce7276", "x-ms-return-client-request-id": "true" @@ -463,22 +454,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65ea9c4a-399a-474f-bd6d-12a03537c366", + "apim-request-id": "c500deb9-cd03-4108-88ea-1763c4f8b423", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:13 GMT", + "Date": "Mon, 25 Oct 2021 21:16:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "405" }, "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": "2c7abb9e-3df4-45bf-8710-138181e46b42", + "lastUpdateDateTime": "2021-10-25T21:16:11Z", + "createdDateTime": "2021-10-25T21:15:59Z", + "expirationDateTime": "2021-10-26T21:15:59Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -486,43 +476,42 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:13.8554915Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:16:11.1418636Z", "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 +520,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 +565,6 @@ "Variables": { "RandomSeed": "1847785475", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..60d2b3e6a88f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fb1e7c31b4bdc045b0e0675823187fd6-2b7f182173348446-00", + "traceparent": "00-79f5ff421b04e44f9ce59bc577d09b97-164aa2cf85530d4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "e34ebf5d11d240721fd15b42fd686423", "x-ms-return-client-request-id": "true" @@ -47,18 +47,18 @@ }, "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": "2c8bdba2-19e0-4e3b-81b4-1462e3233fe3", + "Date": "Mon, 25 Oct 2021 21:17:40 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ce1b1f3f-1f00-4032-8933-b286fadf0aac", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "230" + "x-envoy-upstream-service-time": "168" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ce1b1f3f-1f00-4032-8933-b286fadf0aac", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,8 +67,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "bc4928ee7d2e5170fdded73aa0582bcf", "x-ms-return-client-request-id": "true" @@ -76,194 +76,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "848abdea-9c5d-41ed-9209-540f78fbd3f7", + "apim-request-id": "4146867e-4a87-49e4-88a7-f4a320b7b548", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "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": "a74afc252d89954d7c18363abc11fb78", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "11d7fa04-588d-4c0c-b89d-12acb42929a1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:14 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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": "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", + "jobId": "ce1b1f3f-1f00-4032-8933-b286fadf0aac", + "lastUpdateDateTime": "2021-10-25T21:17:40Z", + "createdDateTime": "2021-10-25T21:17:40Z", + "expirationDateTime": "2021-10-26T21:17:40Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -273,7 +100,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ce1b1f3f-1f00-4032-8933-b286fadf0aac", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -282,203 +109,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "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": "da11f967f8892235dc1d84b2640c7980", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6352026-d46e-4df8-a65d-f647f4f85381", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "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": "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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "de8a0403-aa41-4d0f-af5f-d71c2a0ce72e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "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": "ea164d8cbecc03770129d5a9b0a86c9c", + "x-ms-client-request-id": "a74afc252d89954d7c18363abc11fb78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "942b4936-40c3-41c2-8fca-00f477b55213", + "apim-request-id": "dc51b033-f5fb-4140-9f2d-17feea307de7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:23 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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": "045e8eda-8e70-4d79-b03e-a162c2bfe237", - "lastUpdateDateTime": "2021-08-06T06:44:17Z", - "createdDateTime": "2021-08-06T06:44:13Z", - "expirationDateTime": "2021-08-07T06:44:13Z", + "jobId": "ce1b1f3f-1f00-4032-8933-b286fadf0aac", + "lastUpdateDateTime": "2021-10-25T21:17:40Z", + "createdDateTime": "2021-10-25T21:17:40Z", + "expirationDateTime": "2021-10-26T21:17:40Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -488,7 +142,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/045e8eda-8e70-4d79-b03e-a162c2bfe237", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ce1b1f3f-1f00-4032-8933-b286fadf0aac", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -497,31 +151,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "26de72022be7d538401ea02e1021725b", + "x-ms-client-request-id": "a8c5f98b2521df804ffce6f43937a0c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a854026e-cd70-4fff-b59d-9ef10d1ea6d8", + "apim-request-id": "01054c79-4620-4afe-bbac-0c1eb8db72a6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:24 GMT", + "Date": "Mon, 25 Oct 2021 21:17:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "67" }, "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": "ce1b1f3f-1f00-4032-8933-b286fadf0aac", + "lastUpdateDateTime": "2021-10-25T21:17:43Z", + "createdDateTime": "2021-10-25T21:17:40Z", + "expirationDateTime": "2021-10-26T21:17:40Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -529,43 +182,42 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:44:24.0998229Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:17:43.389166Z", "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 +226,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 +271,6 @@ "Variables": { "RandomSeed": "2045006083", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..54456e980ae2 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-1987e3a714b59c4f9df0aa747cd70bd8-3cfacef505ea1a47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "1a3c29a29ced609c29f6672dabe3c3d2", "x-ms-return-client-request-id": "true" }, @@ -40,45 +46,50 @@ }, "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": "cd119c40-39e8-46a4-8426-4cff10c4f42a", + "Date": "Mon, 25 Oct 2021 21:16:12 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "204" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "194" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "a4e9ac5d-4181-4a13-a332-251a914ea65b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:32 GMT", + "Date": "Mon, 25 Oct 2021 21:16:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "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", - "status": "notStarted", + "jobId": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -88,34 +99,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "a61c3a27-8b06-4e2a-a2c6-37cb333794be", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:33 GMT", + "Date": "Mon, 25 Oct 2021 21:16:13 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": "28" }, "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": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -125,34 +141,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "0eae7ff5-b3fc-4ea0-b43a-7b1104885a5a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:34 GMT", + "Date": "Mon, 25 Oct 2021 21:16:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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", + "jobId": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -162,34 +183,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "f45939ce-cc73-477d-92f3-bff52d0e133e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:35 GMT", + "Date": "Mon, 25 Oct 2021 21:16:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-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": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -199,34 +225,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "ee0d2afc-3e98-4ba7-8132-a98d45108086", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:36 GMT", + "Date": "Mon, 25 Oct 2021 21:16:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-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", + "jobId": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -236,34 +267,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "d7ad20c1-282f-455d-b854-93bcba6d397b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:38 GMT", + "Date": "Mon, 25 Oct 2021 21:16: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": "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", + "jobId": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -273,34 +309,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "c6881c5e-3a9c-414c-b167-1edd454c01f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:39 GMT", + "Date": "Mon, 25 Oct 2021 21:16:20 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": "19" }, "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": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -310,34 +351,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "1b3f82ac-74e0-405b-a326-f888ced79411", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:40 GMT", + "Date": "Mon, 25 Oct 2021 21:16:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "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": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -347,34 +393,249 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/722b376a-6815-45fd-9cb1-1dfc25c58ef5", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "773a91052e47263180dd9a47d0f896b7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07bb7e9b-fcd9-412a-be00-5634ec8c4876", + "apim-request-id": "b09681f1-4d06-41ab-8489-b3d5be882eb2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16: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": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1a1fe5d594bc921c8dde73d4dccd3f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "80d7412d-c509-4617-bde3-e83d15295d3e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "197" + }, + "ResponseBody": { + "jobId": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2cae49f8fd8cb1ec02b83e6abba56c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6dc684b-de05-4254-ae77-3f38a5485be1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16: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": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18430f4545a7ab7f7071af6a47f4d8b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c398afad-62c7-4d55-b58d-9098f952fed3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16: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": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eca8a90ac32dcddee0d63120d53a1e0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "efd1922d-c08a-4ca6-9d72-f13c81da9f2c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:27 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": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:12Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64d851e5-e40f-44a0-86a0-20c823bd51a6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ef72587ba885a49641e6267e0b383cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a44a87d3-0de7-4721-ae47-a844dac78b70", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:41 GMT", + "Date": "Mon, 25 Oct 2021 21:16:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "141" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "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": "64d851e5-e40f-44a0-86a0-20c823bd51a6", + "lastUpdateDateTime": "2021-10-25T21:16:29Z", + "createdDateTime": "2021-10-25T21:16:12Z", + "expirationDateTime": "2021-10-26T21:16:12Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -382,8 +643,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T02:04:41.0906569Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:16:29.2159986Z", "state": "succeeded", "results": { "documents": [ @@ -424,6 +684,6 @@ "Variables": { "RandomSeed": "596565522", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..e47b55441b67 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-fbb63113b378ba4b83e994089875e3e5-377e50efa1220440-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "13ce9a1e1dbf3bc912cb12afa6ed6bdc", "x-ms-return-client-request-id": "true" }, @@ -40,45 +46,50 @@ }, "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": "bc252ae5-94eb-4ae7-a8a7-b7de81d25a18", + "Date": "Mon, 25 Oct 2021 21:17:44 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "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": "203" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "f32308de-cf60-4ec3-a2fa-bb7f067cc11a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:42 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "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", + "jobId": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -88,34 +99,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "57b9ee8a-9c3b-4a26-945e-8c8dad7901e7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:43 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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": "12" }, "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", + "jobId": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", + "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -125,34 +141,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "ebc56c66-aeb7-4061-9537-40eb3163d7e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:44 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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-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", + "jobId": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -162,34 +183,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "1caf343c-a6a9-4d54-bbc9-ff661a9d5e80", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:45 GMT", + "Date": "Mon, 25 Oct 2021 21:17:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "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", + "jobId": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -199,34 +225,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "83e83740-d8e1-4d83-9368-a935a183892d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:46 GMT", + "Date": "Mon, 25 Oct 2021 21:17: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -236,34 +267,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "855c57ed-abb9-405f-9511-503b78fd5b97", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:47 GMT", + "Date": "Mon, 25 Oct 2021 21:17:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" }, "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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -273,34 +309,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "4549dfa0-4e25-434d-89b8-ff00e6cf09fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:48 GMT", + "Date": "Mon, 25 Oct 2021 21:17:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -310,34 +351,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "438aca0e-b06b-4bc0-89db-8b3e54534b4f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:49 GMT", + "Date": "Mon, 25 Oct 2021 21:17:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -347,34 +393,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "2f692f62-f81f-4bab-960c-6a3d095b8d01", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:50 GMT", + "Date": "Mon, 25 Oct 2021 21:17:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -384,34 +435,249 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/4112796a-0c25-420b-abdb-a53dec1303ce", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "ce4c751441d61b100a85149b4c774521", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e322087c-5bb9-47e0-b42c-2702a42314d6", + "apim-request-id": "ba232881-5479-422d-b30e-594b578ac785", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17: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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "daa7064c5868313f308e5862a49c1a3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "390288b5-f0ef-4199-b095-037fd2e6af9c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1378d3e4c37a9924ec4e80eae8d0d13d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4b498ea0-d6de-4474-b736-e91a34e8a18e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18: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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6a759240707bbd7361a9d47e9ad776d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "326e54ed-0c2e-40f1-99e4-95352fd471e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18: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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:17:45Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78b6d66b31ff89a7e20ded19d754485f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "80bd8162-0c98-46b9-94cd-365e23779330", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18: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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:18:02Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4ec1de31-4252-49b3-8e61-f332ff131910", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a3e1bbd63f5dd36fcbcdd5f25dcb03f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fa94f1fc-bb6d-42f5-9a99-67a4304c129d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 02:04:51 GMT", + "Date": "Mon, 25 Oct 2021 21:18:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4950" }, "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": "4ec1de31-4252-49b3-8e61-f332ff131910", + "lastUpdateDateTime": "2021-10-25T21:18:03Z", + "createdDateTime": "2021-10-25T21:17:45Z", + "expirationDateTime": "2021-10-26T21:17:45Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -419,8 +685,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T02:04:51.0985215Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:18:03.6060747Z", "state": "succeeded", "results": { "documents": [ @@ -461,6 +726,6 @@ "Variables": { "RandomSeed": "1798314847", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..2edee769a976 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10922", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-17b7982a2133b242b08ff39d1d8f7d62-9eed9edc5845b641-00", + "traceparent": "00-e54b86d8bb7af14d8edf4ece301f6474-3ec2a8f2e599c54b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "b55900c4efc4ca60da44cc16b7f84b9b", "x-ms-return-client-request-id": "true" @@ -48,18 +48,18 @@ }, "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": "3c582efe-891b-4864-9498-3946b10dbf13", + "Date": "Mon, 25 Oct 2021 21:16:30 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ae28a7b2-43a5-4a84-bb4c-425b60a87085", "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": "221" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ae28a7b2-43a5-4a84-bb4c-425b60a87085", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -68,8 +68,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5387e54aaf8e0fc156b6266f9825a838", "x-ms-return-client-request-id": "true" @@ -77,237 +77,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eac3c1d4-db49-4445-9bd6-cfa18dd52390", + "apim-request-id": "1cc9e542-89b5-40b7-adef-7e66172e720d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:14 GMT", + "Date": "Mon, 25 Oct 2021 21:16:30 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": "70" }, "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": "87636c7d805386db16c96f5b8936f94b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1018cb32-f3a4-44ff-91f8-f16887fbd8e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "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", - "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": "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", + "jobId": "ae28a7b2-43a5-4a84-bb4c-425b60a87085", + "lastUpdateDateTime": "2021-10-25T21:16:30Z", + "createdDateTime": "2021-10-25T21:16:30Z", + "expirationDateTime": "2021-10-26T21:16:30Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -317,7 +101,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ae28a7b2-43a5-4a84-bb4c-425b60a87085", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -326,117 +110,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "x-ms-client-request-id": "87636c7d805386db16c96f5b8936f94b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9cae2660-e131-48e2-99dd-6a3776689c8d", + "apim-request-id": "edcef233-9033-4820-9b7f-3c4c12a8de25", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:23 GMT", + "Date": "Mon, 25 Oct 2021 21:16:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "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": "ae28a7b2-43a5-4a84-bb4c-425b60a87085", + "lastUpdateDateTime": "2021-10-25T21:16:30Z", + "createdDateTime": "2021-10-25T21:16:30Z", + "expirationDateTime": "2021-10-26T21:16:30Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -446,7 +143,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/7002a955-8af8-406a-9261-470fcd4394e8", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ae28a7b2-43a5-4a84-bb4c-425b60a87085", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -455,31 +152,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "fe65d23d4fe93232bd44cc44b0b38a24", + "x-ms-client-request-id": "18b1a8fc52ab14db3e495f0dc9f031b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f15023c-cc80-4130-85d9-51bd038f037c", + "apim-request-id": "a27fa0a4-56cd-4698-b560-9ebc64446343", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:24 GMT", + "Date": "Mon, 25 Oct 2021 21:16:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "189" }, "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": "ae28a7b2-43a5-4a84-bb4c-425b60a87085", + "lastUpdateDateTime": "2021-10-25T21:16:32Z", + "createdDateTime": "2021-10-25T21:16:30Z", + "expirationDateTime": "2021-10-26T21:16:30Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -487,8 +183,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:23.8395003Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:16:32.9861304Z", "state": "succeeded", "results": { "documents": [ @@ -496,34 +191,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 +227,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 +272,6 @@ "Variables": { "RandomSeed": "2008210683", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..2e5ae9c1c445 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithRankOrderTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10922", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f34e8cbc7f6ca64dbc698a3d925a869a-9b27daef790f7640-00", + "traceparent": "00-452e24e319a92d48917577afd44b9ce4-4d4d1ed9088a874c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "0293a97699f5d2ec1fba7df50d61fb6e", "x-ms-return-client-request-id": "true" @@ -48,18 +48,18 @@ }, "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": "e9523592-7236-4c13-9a4c-547103a530ed", + "Date": "Mon, 25 Oct 2021 21:18:09 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddcd0eaa-c0f0-4186-abdf-c72705d6a535", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-envoy-upstream-service-time": "289" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddcd0eaa-c0f0-4186-abdf-c72705d6a535", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -68,8 +68,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "ec215ddf4e4925438ec46a95dc1da62a", "x-ms-return-client-request-id": "true" @@ -77,280 +77,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ac8976b-3768-4b35-9a3e-05f022dbb75b", + "apim-request-id": "424a43bb-26b4-4966-b4a6-262fd8e08b15", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "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", - "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": "0765e58eea10dffee922566b5cd6200b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9dc94a76-72f4-462d-9faf-3d60213eee16", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:25 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:24Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", - "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/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": "d5e1841f7b5d2880666d74312f57f601", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "df43866a-33fb-4ae0-a619-3192a19b32ff", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "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", - "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": "27665314f3fbf55e5e410326f8d7c9b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1fec8a22-61b7-405a-8299-aa6313262c0b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "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": "58755fa3d03c13cd653da1a275cdb092", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "11f6d662-6b77-4094-b890-a374323dc3fb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:28 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": "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": "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", + "Date": "Mon, 25 Oct 2021 21:18: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": "d67ac767-7263-4588-b160-3dd54c55e47c", - "lastUpdateDateTime": "2021-08-06T06:44:27Z", - "createdDateTime": "2021-08-06T06:44:24Z", - "expirationDateTime": "2021-08-07T06:44:24Z", + "jobId": "ddcd0eaa-c0f0-4186-abdf-c72705d6a535", + "lastUpdateDateTime": "2021-10-25T21:18:10Z", + "createdDateTime": "2021-10-25T21:18:10Z", + "expirationDateTime": "2021-10-26T21:18:10Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -360,7 +101,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddcd0eaa-c0f0-4186-abdf-c72705d6a535", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -369,31 +110,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "a3fa7091c080a947504a32505ab29a0b", + "x-ms-client-request-id": "0765e58eea10dffee922566b5cd6200b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27bf72c4-8689-488d-8ae6-2039fc6f0feb", + "apim-request-id": "4b979428-2afe-4b4d-b456-39be2768efeb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:32 GMT", + "Date": "Mon, 25 Oct 2021 21:18:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "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": "ddcd0eaa-c0f0-4186-abdf-c72705d6a535", + "lastUpdateDateTime": "2021-10-25T21:18:10Z", + "createdDateTime": "2021-10-25T21:18:10Z", + "expirationDateTime": "2021-10-26T21:18:10Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -403,7 +143,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddcd0eaa-c0f0-4186-abdf-c72705d6a535", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -412,31 +152,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "b9fe130ce03f8eb18e12821b3650d96a", + "x-ms-client-request-id": "d5e1841f7b5d2880666d74312f57f601", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "795c4275-2101-439b-88a9-d42236c9e93c", + "apim-request-id": "b5768f0b-2bc9-47b7-afea-1c34d58a1a70", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:33 GMT", + "Date": "Mon, 25 Oct 2021 21:18:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "20" }, "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": "ddcd0eaa-c0f0-4186-abdf-c72705d6a535", + "lastUpdateDateTime": "2021-10-25T21:18:13Z", + "createdDateTime": "2021-10-25T21:18:10Z", + "expirationDateTime": "2021-10-26T21:18:10Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -446,7 +185,7 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/d67ac767-7263-4588-b160-3dd54c55e47c", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddcd0eaa-c0f0-4186-abdf-c72705d6a535", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -455,31 +194,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "0789e56c8c5ee40d74e47e976b74e9d4", + "x-ms-client-request-id": "27665314f3fbf55e5e410326f8d7c9b7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "677efa10-6c81-4228-a51c-d10a8f8ab566", + "apim-request-id": "5242ca9a-9548-4394-898c-705eb4533e2c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:34 GMT", + "Date": "Mon, 25 Oct 2021 21:18:14 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": "236" }, "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": "ddcd0eaa-c0f0-4186-abdf-c72705d6a535", + "lastUpdateDateTime": "2021-10-25T21:18:13Z", + "createdDateTime": "2021-10-25T21:18:10Z", + "expirationDateTime": "2021-10-26T21:18:10Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -487,8 +225,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:44:33.936568Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:18:13.4208595Z", "state": "succeeded", "results": { "documents": [ @@ -496,34 +233,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 +269,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 +314,6 @@ "Variables": { "RandomSeed": "1656487347", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..cd16a36d17eb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d17edccf516fd45bb1f83c33dbe004e-223af9843fc5fa48-00", + "traceparent": "00-5bbeb010afa1d04791cab464b7bd4f34-1cbba521dedccf44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "b5b7af78030e9fd13422000420f3bfb1", "x-ms-return-client-request-id": "true" @@ -47,18 +47,18 @@ }, "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": "4eba2d83-95c2-4eb3-9e89-22e3c946b244", + "Date": "Mon, 25 Oct 2021 21:16:34 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7b9245c4-9022-41c2-b862-e5ca499ec931", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "185" + "x-envoy-upstream-service-time": "172" }, "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7b9245c4-9022-41c2-b862-e5ca499ec931?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,8 +67,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "787f8a47014084dcb2054b10ebcfc38a", "x-ms-return-client-request-id": "true" @@ -76,323 +76,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f36757a-2974-4302-bdae-23371241cd88", + "apim-request-id": "f7ae1d35-0f25-4272-8b88-5bffebbbb214", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:24 GMT", + "Date": "Mon, 25 Oct 2021 21:16: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": "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", - "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": "1ec85caffbf95b7033e56eb80be0b66a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ed8cb6ab-640b-4834-9fae-2630b965de65", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "jobId": "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", - "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": "bdedae3200527712d3330308b7c1b464", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4609234e-c83e-4bf5-b2d0-7e923ea3755d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "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", - "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": "c355765fa02b4bb81a23445a932478d2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "14236094-a42b-4989-9a56-3b61cf099acc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "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": "3cdde14f05e2af374a504bc5f867a371", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c4be8568-df1a-4aff-9684-6dc5ab9f181f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43: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": "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": "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", + "jobId": "7b9245c4-9022-41c2-b862-e5ca499ec931", + "lastUpdateDateTime": "2021-10-25T21:16:35Z", + "createdDateTime": "2021-10-25T21:16:34Z", + "expirationDateTime": "2021-10-26T21:16:34Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -402,7 +100,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7b9245c4-9022-41c2-b862-e5ca499ec931?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -411,31 +109,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "c70a9c6ccdaeba8e86ff55e578653d04", + "x-ms-client-request-id": "1ec85caffbf95b7033e56eb80be0b66a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a487fe9-cbff-436b-bf73-32f78ae0712b", + "apim-request-id": "3439f2ef-4715-4e9b-bdf7-fbd95e058b92", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:33 GMT", + "Date": "Mon, 25 Oct 2021 21:16:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "16" }, "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": "7b9245c4-9022-41c2-b862-e5ca499ec931", + "lastUpdateDateTime": "2021-10-25T21:16:35Z", + "createdDateTime": "2021-10-25T21:16:34Z", + "expirationDateTime": "2021-10-26T21:16:34Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -445,7 +142,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7b9245c4-9022-41c2-b862-e5ca499ec931?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -454,31 +151,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "e8aff04e5a8ed8e3e95b35983041f737", + "x-ms-client-request-id": "bdedae3200527712d3330308b7c1b464", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fde8f13f-4b8f-4aeb-80fa-a9288c588b9c", + "apim-request-id": "0c4a9ecd-aad1-4f11-b7fa-d2f49dfae93e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:43:34 GMT", + "Date": "Mon, 25 Oct 2021 21:16:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "62" }, "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": "7b9245c4-9022-41c2-b862-e5ca499ec931", + "lastUpdateDateTime": "2021-10-25T21:16:37Z", + "createdDateTime": "2021-10-25T21:16:34Z", + "expirationDateTime": "2021-10-26T21:16:34Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -486,8 +182,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:43:33.9028492Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:16:37.7891941Z", "state": "succeeded", "results": { "statistics": { @@ -504,35 +199,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 +240,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 +285,6 @@ "Variables": { "RandomSeed": "1123779693", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..53e14c356cfc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "10906", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a972da54b73e5249a7976ce1ecc4a6a8-8cc6ad512797e042-00", + "traceparent": "00-df7a859003a58449bfbc2dd8a5b32650-3a0439d72ea3ce49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f651d36160d378a599298ba19919e0a7", "x-ms-return-client-request-id": "true" @@ -47,18 +47,18 @@ }, "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": "d6fecc37-d8c7-4ff1-91ca-e4311ec39333", + "Date": "Mon, 25 Oct 2021 21:18:15 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f0012c06-2c20-45af-9d38-b8b8dfb8135e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "268" + "x-envoy-upstream-service-time": "213" }, "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f0012c06-2c20-45af-9d38-b8b8dfb8135e?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,8 +67,8 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "e8f6931be6a336a1f65aba107d159126", "x-ms-return-client-request-id": "true" @@ -76,323 +76,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85a393c0-5927-4e6b-91b2-52637995d95d", + "apim-request-id": "0067d530-a21a-487a-8389-a44d159c9962", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:34 GMT", + "Date": "Mon, 25 Oct 2021 21:18:15 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": "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", - "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": "d87d90c0b572211b8b6294c31d0071e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8dfbeb1d-121d-40fb-9698-573568403ec3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "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", - "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": "4036edda14fe7ba6321bff78a594fb84", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9f590ac2-efb1-4776-ad96-f9e62ea7025c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06: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" - }, - "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", - "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": "09e06498089c653577d55c4051dd19f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7745022f-dbac-4f0a-920c-6dcd3a2b066a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "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": "8f36d0e850deac28e902a556b5a27bf6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2b64a161-815a-47f6-a3b2-992981d1898e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44: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": "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": "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" + "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": "f0012c06-2c20-45af-9d38-b8b8dfb8135e", + "lastUpdateDateTime": "2021-10-25T21:18:15Z", + "createdDateTime": "2021-10-25T21:18:15Z", + "expirationDateTime": "2021-10-26T21:18:15Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -402,7 +100,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f0012c06-2c20-45af-9d38-b8b8dfb8135e?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -411,31 +109,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "ab5451d8a613fc986be27bec48b26ed9", + "x-ms-client-request-id": "d87d90c0b572211b8b6294c31d0071e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43060935-cbf5-4404-8981-9bd3a58c9897", + "apim-request-id": "935ad808-5bc0-4481-a07d-1d5553d72154", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:42 GMT", + "Date": "Mon, 25 Oct 2021 21:18:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "10" }, "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": "f0012c06-2c20-45af-9d38-b8b8dfb8135e", + "lastUpdateDateTime": "2021-10-25T21:18:15Z", + "createdDateTime": "2021-10-25T21:18:15Z", + "expirationDateTime": "2021-10-26T21:18:15Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -445,7 +142,7 @@ } }, { - "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f0012c06-2c20-45af-9d38-b8b8dfb8135e?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -454,31 +151,30 @@ ], "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)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], - "x-ms-client-request-id": "52cff420e88ca1a1340f50f89397c13d", + "x-ms-client-request-id": "4036edda14fe7ba6321bff78a594fb84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afb63a56-620a-427e-9cf7-2fa1d02635d3", + "apim-request-id": "3112de65-6698-4d2c-9c47-934e59cec50a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 06:44:43 GMT", + "Date": "Mon, 25 Oct 2021 21:18:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "92" }, "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": "f0012c06-2c20-45af-9d38-b8b8dfb8135e", + "lastUpdateDateTime": "2021-10-25T21:18:18Z", + "createdDateTime": "2021-10-25T21:18:15Z", + "expirationDateTime": "2021-10-26T21:18:15Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -486,8 +182,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T06:44:44.0791179Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:18:18.2654493Z", "state": "succeeded", "results": { "statistics": { @@ -504,35 +199,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 +240,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 +285,6 @@ "Variables": { "RandomSeed": "1098155344", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..de96741ccc6f 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-ad78402d3a0f8f46881b874df246149c-c4f16f4f203eca44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "461669e10726ac79776bfb5a88ea135b", "x-ms-return-client-request-id": "true" }, @@ -41,859 +47,50 @@ }, "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": "550fbccf-9a1d-4ab9-8de6-c2484906c3b2", + "Date": "Mon, 25 Oct 2021 21:16:37 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7e2272fd-887d-4f06-82d2-bb998907a764", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1119" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7e2272fd-887d-4f06-82d2-bb998907a764", "RequestMethod": "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.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "68b92168-00a6-40ed-be3d-d3ba76561eac", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:23:41 GMT", + "Date": "Mon, 25 Oct 2021 21:16:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - }, - "ResponseBody": { - "jobId": "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" - }, - "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": "219cc0ab378f23214c92e779649ad194", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "16f59346-3fbc-43a3-9647-0ca4819f815c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "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" + "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", + "jobId": "7e2272fd-887d-4f06-82d2-bb998907a764", + "lastUpdateDateTime": "2021-10-25T21:16:38Z", + "createdDateTime": "2021-10-25T21:16:38Z", + "expirationDateTime": "2021-10-26T21:16:38Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -903,34 +100,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7e2272fd-887d-4f06-82d2-bb998907a764", "RequestMethod": "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.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.20211025.1", + "(.NET Core 3.1.20; 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": "1abcaf48-1d5b-4c41-95e3-c9e51d79ee59", + "apim-request-id": "683bea96-54db-44ce-b01c-a4df62f78e3e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:07 GMT", + "Date": "Mon, 25 Oct 2021 21:16:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" }, "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": "7e2272fd-887d-4f06-82d2-bb998907a764", + "lastUpdateDateTime": "2021-10-25T21:16:38Z", + "createdDateTime": "2021-10-25T21:16:38Z", + "expirationDateTime": "2021-10-26T21:16:38Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -940,34 +142,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/315286bf-201d-45b6-9213-0d37686ec34e", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7e2272fd-887d-4f06-82d2-bb998907a764", "RequestMethod": "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.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.20211025.1", + "(.NET Core 3.1.20; 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": "179e5ae5-da00-4f4a-91aa-485618358db2", + "apim-request-id": "ecc10bac-26fc-4fba-882c-9911a3109c72", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:08 GMT", + "Date": "Mon, 25 Oct 2021 21:16:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "141" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "80" }, "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": "7e2272fd-887d-4f06-82d2-bb998907a764", + "lastUpdateDateTime": "2021-10-25T21:16:41Z", + "createdDateTime": "2021-10-25T21:16:38Z", + "expirationDateTime": "2021-10-26T21:16:38Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -975,8 +182,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T17:24:07.5724281Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:16:41.3721813Z", "state": "succeeded", "results": { "documents": [ @@ -984,22 +190,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 +214,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 +247,6 @@ "Variables": { "RandomSeed": "2018294457", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..e1a0cad0a878 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,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "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-caf63e4bfe925b409d728c07ba53e6d8-a71e40eab300af47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "2eb74242851ebe33c7bc432d1c2529bb", "x-ms-return-client-request-id": "true" }, @@ -41,45 +47,50 @@ }, "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": "3cc987bc-2cf1-4bb9-b2f9-edcc72d42b70", + "Date": "Mon, 25 Oct 2021 21:18:19 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/0c797573-b6bc-45a8-a16e-af9336bbbd49", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "189" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "206" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/0c797573-b6bc-45a8-a16e-af9336bbbd49", "RequestMethod": "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.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "d99050cb-3521-4976-af16-1ce5e77aa4ac", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:09 GMT", + "Date": "Mon, 25 Oct 2021 21:18:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "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", + "jobId": "0c797573-b6bc-45a8-a16e-af9336bbbd49", + "lastUpdateDateTime": "2021-10-25T21:18:19Z", + "createdDateTime": "2021-10-25T21:18:19Z", + "expirationDateTime": "2021-10-26T21:18:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -89,34 +100,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/0c797573-b6bc-45a8-a16e-af9336bbbd49", "RequestMethod": "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.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "d6a569f8-f735-4b47-8667-9fead0b2e19c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:10 GMT", + "Date": "Mon, 25 Oct 2021 21:18:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", + "jobId": "0c797573-b6bc-45a8-a16e-af9336bbbd49", + "lastUpdateDateTime": "2021-10-25T21:18:19Z", + "createdDateTime": "2021-10-25T21:18:19Z", + "expirationDateTime": "2021-10-26T21:18:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -126,34 +142,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/0c797573-b6bc-45a8-a16e-af9336bbbd49", "RequestMethod": "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.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "67eced0f-4e99-486e-b7f6-ea973cae9e63", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:11 GMT", + "Date": "Mon, 25 Oct 2021 21:18:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", + "jobId": "0c797573-b6bc-45a8-a16e-af9336bbbd49", + "lastUpdateDateTime": "2021-10-25T21:18:19Z", + "createdDateTime": "2021-10-25T21:18:19Z", + "expirationDateTime": "2021-10-26T21:18:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -163,34 +184,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/0c797573-b6bc-45a8-a16e-af9336bbbd49", "RequestMethod": "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.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "072c968c-55d1-4390-b1c1-8cbcb32570cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:12 GMT", + "Date": "Mon, 25 Oct 2021 21:18: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": "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", + "jobId": "0c797573-b6bc-45a8-a16e-af9336bbbd49", + "lastUpdateDateTime": "2021-10-25T21:18:19Z", + "createdDateTime": "2021-10-25T21:18:19Z", + "expirationDateTime": "2021-10-26T21:18:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -200,34 +226,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/0c797573-b6bc-45a8-a16e-af9336bbbd49", "RequestMethod": "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.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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": "5192eda6-1cf1-4096-8a13-c7760222b81d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:13 GMT", + "Date": "Mon, 25 Oct 2021 21:18: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": "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", + "jobId": "0c797573-b6bc-45a8-a16e-af9336bbbd49", + "lastUpdateDateTime": "2021-10-25T21:18:19Z", + "createdDateTime": "2021-10-25T21:18:19Z", + "expirationDateTime": "2021-10-26T21:18:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -237,34 +268,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/0c797573-b6bc-45a8-a16e-af9336bbbd49", "RequestMethod": "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.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "cfc2693f-bb6a-4c64-8fa6-69ad17a50bb5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:14 GMT", + "Date": "Mon, 25 Oct 2021 21:18:25 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": "12" }, "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": "0c797573-b6bc-45a8-a16e-af9336bbbd49", + "lastUpdateDateTime": "2021-10-25T21:18:19Z", + "createdDateTime": "2021-10-25T21:18:19Z", + "expirationDateTime": "2021-10-26T21:18:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -274,34 +310,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/0c797573-b6bc-45a8-a16e-af9336bbbd49", "RequestMethod": "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.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", + "apim-request-id": "2dff3fc5-b8cc-48f1-9a86-dba231963d31", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:15 GMT", + "Date": "Mon, 25 Oct 2021 21:18:27 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": "0887034f-f934-43a1-bac0-36a4ac2c78c3", - "lastUpdateDateTime": "2021-08-06T17:24:09Z", - "createdDateTime": "2021-08-06T17:24:09Z", - "expirationDateTime": "2021-08-07T17:24:09Z", + "jobId": "0c797573-b6bc-45a8-a16e-af9336bbbd49", + "lastUpdateDateTime": "2021-10-25T21:18:19Z", + "createdDateTime": "2021-10-25T21:18:19Z", + "expirationDateTime": "2021-10-26T21:18:19Z", "status": "running", "errors": [], - "displayName": "NA", "tasks": { "completed": 0, "failed": 0, @@ -311,626 +352,39 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/analyze/jobs/0887034f-f934-43a1-bac0-36a4ac2c78c3", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/0c797573-b6bc-45a8-a16e-af9336bbbd49", "RequestMethod": "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.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; 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", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24: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": "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", + "apim-request-id": "09c9fd71-ea04-4b29-9201-7c0bb3b710f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 17:24:23 GMT", + "Date": "Mon, 25 Oct 2021 21:18:28 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": "174" }, "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": "0c797573-b6bc-45a8-a16e-af9336bbbd49", + "lastUpdateDateTime": "2021-10-25T21:18:28Z", + "createdDateTime": "2021-10-25T21:18:19Z", + "expirationDateTime": "2021-10-26T21:18:19Z", "status": "succeeded", "errors": [], - "displayName": "NA", "tasks": { "completed": 1, "failed": 0, @@ -938,8 +392,7 @@ "total": 1, "extractiveSummarizationTasks": [ { - "lastUpdateDateTime": "2021-08-06T17:24:33.2614047Z", - "taskName": "ExtractiveSummarization_latest", + "lastUpdateDateTime": "2021-10-25T21:18:28.6656969Z", "state": "succeeded", "results": { "documents": [ @@ -947,22 +400,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 +424,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 +457,6 @@ "Variables": { "RandomSeed": "738228031", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithMultipleActions.json new file mode 100644 index 000000000000..13ed7841c8c1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithMultipleActions.json @@ -0,0 +1,949 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "11039", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-12843e4a9bc78844804a5484810f8413-535b0b7d6f92e74b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e73b90435cce70b2e4922f1ab54c953", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years. Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world. The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors. Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut. \u201CTraditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,\u201D he explained. \u201CBased on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.\u201D \u201CNow, with Windows 365, we can do that within less than an hour of the account being created,\u201D he said. Windows 365 puts Microsoft\u2019s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection. The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. 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. \u201CWindows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not \u2013 maybe it was too costly, too complex or they didn\u2019t have the expertise in house to do it,\u201D said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia. With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs. The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user\u2019s choosing from anywhere with an internet connection. \u201CYou want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office \u2013 you want them to have that same experience,\u201D he said. \u201CAnd you want them to have that experience in such a way that it feels familiar to them. It\u2019s not this jolting thing that takes away all the things they love about Windows.\u201D Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft\u2019s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365. The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience \u2013 gamers \u2013 lacks an IT department to lean on when things glitch. \u201CThat started me thinking, \u2018How do we build something that doesn\u2019t require IT intervention, something that could truly scale to the consumer market?\u2019\u201D Manchester said. The consumer experience was Manchester\u2019s benchmark when he started work on virtualization. \u201CI took note of every time there was something that didn\u2019t quite deliver on that,\u201D he said. \u201CAnd, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.\u201D Covering that ground led to improvements in Microsoft\u2019s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT. To lead the development of Windows 365, Manchester leaned into his Arcadia mindset. \u201CWhen we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,\u201D he said. Soon after this bar was set, and the first batch of hires made \u2013 a handful of experts in virtualization and user experience \u2013 COVID-19 hit and changed the world. \u201CWe hired everybody else during the pandemic,\u201D Manchester said. \u201CThey were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations \u2013 their bar was the experience they had on their laptop \u2013 and we basically used Windows 365 to build Windows 365.\u201D As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC. \u201CWe\u2019re giving you Windows from the cloud,\u201D Manchester said.", + "language": "en" + }, + { + "id": "2", + "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. 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 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. 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. \u201CAnd then, when you\u2019re done, you\u2019re done. You won\u2019t have any issues around security because you\u2019re not saving anything on your device,\u201D McKelvey said, noting that all the data is stored in the cloud. 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. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise. \u201CI think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,\u201D McKelvey said. The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure. We didn\u2019t run it for very long,\u201D he said. \u201CIt didn\u2019t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.\u201D He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government\u2019s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester\u2019s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly. \u201CThe impact that I believe we are finding, and the impact that we\u2019re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,\u201D he said. \u201CBeing able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.\u201D", + "language": "en" + } + ] + }, + "tasks": { + "extractiveSummarizationTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "ExtractSummaryWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "ExtractSummary" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "692fa813-349f-41ed-a59c-7ba84a2434b2", + "Date": "Mon, 25 Oct 2021 21:16:43 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1319" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cd81395d120b81ebbcdb6ad5ac9adf7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c117f8b-29ba-49f5-ace5-0e431245232d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16: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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:43Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "806a4f5736b1b5d26cf0ae80e569d85f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9dcd99d-e928-4aa0-9e38-d36b447f538e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:43Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fce7960ffcea32129aba72fe7f5d8c65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cf628801-21f0-4f28-b0d9-df6254fee180", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16: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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:43Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c9a2a9b48e95fa14123df2f239dd352", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "17813f83-ef5d-4e29-a8f3-1520a03cc8db", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16: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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:43Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c39e56f5b1e15a0d3d38e5f6c3d3350e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d5e2e0f-b534-4066-81fb-3df7eeef9172", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16: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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:43Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbe549647ccfc676f588bac71ce20efc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5bbafceb-8b79-4dfe-977b-bee95ca5690d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:49 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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "290820e7c8bfea831d3f1eb162aa9c6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "84a9df62-8199-48a5-a1d6-8702a69b6fdb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:51 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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dacbd1ed17b87983e0d7ce58f6453d5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e6b7a416-ae7a-4a25-bdbf-084e302e1ab8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:52 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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a20fe9290ccb9c4fc5fa9e8f5dc4634a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "144eb62f-8679-451c-9a07-39fd80e8733c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16: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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bda4dec3317cf449d8f48e8f92bf3d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e20be594-3fb7-427a-a6cd-271607d3c79a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:54 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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7988c202f99be0a2822f15bd79f31b1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "447a0379-6ea5-49f8-a107-04c71239db24", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16: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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a96c8473f16bf544a43f053bc366a299", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aaa65005-6408-4583-aea6-7d82df459553", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:57 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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b8cc606ea3cf3aeaaf9c9e81e8656a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4372021b-d20d-42df-80a0-23576d5e5a12", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:58 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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75742d734abe116c7e92d45cf3661c1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea012b7c-15ac-489d-822a-6fd72d7c50cf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:16:59 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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3b77b8c806689ded579fe71275cd71e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3ce2a3c1-36d3-4428-a50a-793c1279f98c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96c85be82cf2bcdb5a7b1ca91551ff43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c766b4a-bc08-4192-8b17-22c81cc66ab8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17:02 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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a25baedca2cff3424eeba0454bfae922", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9dc9ed2c-6943-4379-b34a-c8d93ed800a5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17: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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:16:49Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9773b6bb869e6029a0fb58eb63357383", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "577fef0d-7b7b-46c6-b5e0-001ddfb79a99", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:17:04 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": "ab9cd2bb-dc51-4bb7-bc48-5c99576f26b5", + "lastUpdateDateTime": "2021-10-25T21:17:04Z", + "createdDateTime": "2021-10-25T21:16:41Z", + "expirationDateTime": "2021-10-26T21:16:41Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:17:04.2490617Z", + "taskName": "ExtractSummaryWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "sentences": [ + { + "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": "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": [] + }, + { + "id": "2", + "sentences": [ + { + "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": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:17:04.4173873Z", + "taskName": "ExtractSummary", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "sentences": [ + { + "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": "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": [] + }, + { + "id": "2", + "sentences": [ + { + "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": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1114564498", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithMultipleActionsAsync.json new file mode 100644 index 000000000000..28a5990e92fd --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractSummaryTests/ExtractSummaryWithMultipleActionsAsync.json @@ -0,0 +1,800 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "11039", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-e0a375d64b89a946833e3210153d6cc0-7b30d1af25135a4d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3eeabf31c120d2f33d02ae39d3314fb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years. Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world. The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors. Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut. \u201CTraditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,\u201D he explained. \u201CBased on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.\u201D \u201CNow, with Windows 365, we can do that within less than an hour of the account being created,\u201D he said. Windows 365 puts Microsoft\u2019s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection. The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. 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. \u201CWindows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not \u2013 maybe it was too costly, too complex or they didn\u2019t have the expertise in house to do it,\u201D said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia. With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs. The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user\u2019s choosing from anywhere with an internet connection. \u201CYou want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office \u2013 you want them to have that same experience,\u201D he said. \u201CAnd you want them to have that experience in such a way that it feels familiar to them. It\u2019s not this jolting thing that takes away all the things they love about Windows.\u201D Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft\u2019s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365. The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience \u2013 gamers \u2013 lacks an IT department to lean on when things glitch. \u201CThat started me thinking, \u2018How do we build something that doesn\u2019t require IT intervention, something that could truly scale to the consumer market?\u2019\u201D Manchester said. The consumer experience was Manchester\u2019s benchmark when he started work on virtualization. \u201CI took note of every time there was something that didn\u2019t quite deliver on that,\u201D he said. \u201CAnd, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.\u201D Covering that ground led to improvements in Microsoft\u2019s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT. To lead the development of Windows 365, Manchester leaned into his Arcadia mindset. \u201CWhen we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,\u201D he said. Soon after this bar was set, and the first batch of hires made \u2013 a handful of experts in virtualization and user experience \u2013 COVID-19 hit and changed the world. \u201CWe hired everybody else during the pandemic,\u201D Manchester said. \u201CThey were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations \u2013 their bar was the experience they had on their laptop \u2013 and we basically used Windows 365 to build Windows 365.\u201D As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC. \u201CWe\u2019re giving you Windows from the cloud,\u201D Manchester said.", + "language": "en" + }, + { + "id": "2", + "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. 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 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. 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. \u201CAnd then, when you\u2019re done, you\u2019re done. You won\u2019t have any issues around security because you\u2019re not saving anything on your device,\u201D McKelvey said, noting that all the data is stored in the cloud. 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. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise. \u201CI think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,\u201D McKelvey said. The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure. We didn\u2019t run it for very long,\u201D he said. \u201CIt didn\u2019t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.\u201D He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government\u2019s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester\u2019s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly. \u201CThe impact that I believe we are finding, and the impact that we\u2019re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,\u201D he said. \u201CBeing able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.\u201D", + "language": "en" + } + ] + }, + "tasks": { + "extractiveSummarizationTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "ExtractSummaryWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "ExtractSummary" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6426a53a-9cb2-47bc-9daf-bad213a84156", + "Date": "Mon, 25 Oct 2021 21:18:29 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "205" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b402d050d70addfa2ecfc1d57fa81d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dacac91d-76f0-41d7-8bc8-e938636a133d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18: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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:30Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e12b9bc0e0b1fc9da2d8c680446ccb0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d9b455cf-f0e4-47f7-91a3-a80e45f43985", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18:31 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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:30Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef77229f6cc324c0df3d9c33c4d57a42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1077fd79-50ea-4afc-b946-b3a167069fea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18:32 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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:30Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3778d7816e0525088f44d997475f6936", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "faa2e3aa-72aa-4b59-90b4-39a72b4de533", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:30Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "357ef02191825414db070173446a38cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "903b9de3-1e36-4163-ac41-1f252c7dcbba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18:34 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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:30Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dff835d93f431061a52607e9328dc7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f171d2a0-e31b-4881-a73c-4dcf19ccccf4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18:36 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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:36Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d31265d34557efc0c3245cfe6c94e024", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d1c070a2-0c64-4db4-afde-f32f98230fac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18: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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:36Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4390c0bfc608d41e94d1a2f3095c1b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "625ee35b-3509-466b-b4fd-e13f4e25edb4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18: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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:36Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dea0822a64581774c20faad03608c585", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb2f52f8-43f8-4711-8620-40259b1832b6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18: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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:36Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86733c7118eed71f2485ea0a2b90be2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad95d85d-f4ac-4136-90c0-7c07e9a9191e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18: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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:36Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9d3aa6202f4a7cc97220150527156e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cb0d2854-2aaa-4e7d-a630-4c1274331495", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:36Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4be94883b2212c362c9bad37a6aec32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "996292ab-7e55-4a34-8be6-9bec806fc43e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6654" + }, + "ResponseBody": { + "jobId": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:43Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:18:43.1535823Z", + "taskName": "ExtractSummaryWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "sentences": [ + { + "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": "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": [] + }, + { + "id": "2", + "sentences": [ + { + "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": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddf218dd-cf20-40d0-abff-659181797c96", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c6d7c50db346f916fcceecc16ce84b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8727859-164d-4fb1-9587-d17627ac1e89", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:18:51 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": "ddf218dd-cf20-40d0-abff-659181797c96", + "lastUpdateDateTime": "2021-10-25T21:18:46Z", + "createdDateTime": "2021-10-25T21:18:29Z", + "expirationDateTime": "2021-10-26T21:18:29Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:18:43.1535823Z", + "taskName": "ExtractSummaryWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "sentences": [ + { + "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": "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": [] + }, + { + "id": "2", + "sentences": [ + { + "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": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:18:46.923786Z", + "taskName": "ExtractSummary", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "sentences": [ + { + "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": "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": [] + }, + { + "id": "2", + "sentences": [ + { + "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": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1300, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1384, + "length": 67 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "496980875", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceTest.json new file mode 100644 index 000000000000..eff50a0296ba --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceTest.json @@ -0,0 +1,162 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "564", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-2776891639682d49ad1cc907f90c6786-cd294b842c02c640-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f239d83ee3161157ec92517fefbbda7e", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e41d7238-4193-419a-847f-c5d910504768", + "Date": "Mon, 25 Oct 2021 23:30:35 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e57c357f-8dd3-4b25-b9f1-df6ea95b848e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "223" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e57c357f-8dd3-4b25-b9f1-df6ea95b848e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7ec04fe460fa3eef35d0d229a390e245", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f515b13-aee3-45fe-b780-a2ac2315ab7e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30: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": "e57c357f-8dd3-4b25-b9f1-df6ea95b848e", + "lastUpdateDateTime": "2021-10-25T23:30:36Z", + "createdDateTime": "2021-10-25T23:30:36Z", + "expirationDateTime": "2021-10-26T23:30:36Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/e57c357f-8dd3-4b25-b9f1-df6ea95b848e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "86a67303a3d1040789a52cdc11e926a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "287496c3-8f74-478a-a1f5-8185ada27414", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "139" + }, + "ResponseBody": { + "jobId": "e57c357f-8dd3-4b25-b9f1-df6ea95b848e", + "lastUpdateDateTime": "2021-10-25T23:30:37Z", + "createdDateTime": "2021-10-25T23:30:36Z", + "expirationDateTime": "2021-10-26T23:30:36Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:37.4110878Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "306457240", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceTestAsync.json new file mode 100644 index 000000000000..843290e70dc8 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceTestAsync.json @@ -0,0 +1,162 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "564", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-0a01862d5ee6494a9a2c183c5b3cfa4d-9bf02a943d5c0346-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "718a5a8721a7c47b28a6d6f40fa42e90", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a090d0b5-31ad-4308-b785-538ed7894ae6", + "Date": "Mon, 25 Oct 2021 23:30:50 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/163f42c5-7474-4932-ae5c-c2fbacca386e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "178" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/163f42c5-7474-4932-ae5c-c2fbacca386e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "52d011f3b82af3f309e064b1bf001af7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd9663f4-e23e-406d-9d2b-cff72ded72df", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30: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": "163f42c5-7474-4932-ae5c-c2fbacca386e", + "lastUpdateDateTime": "2021-10-25T23:30:50Z", + "createdDateTime": "2021-10-25T23:30:50Z", + "expirationDateTime": "2021-10-26T23:30:50Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/163f42c5-7474-4932-ae5c-c2fbacca386e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2e9ba3ef2af0771918680395314e3c1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a4faf895-b17a-4c50-9d6e-55d5e822f5b1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" + }, + "ResponseBody": { + "jobId": "163f42c5-7474-4932-ae5c-c2fbacca386e", + "lastUpdateDateTime": "2021-10-25T23:30:51Z", + "createdDateTime": "2021-10-25T23:30:50Z", + "expirationDateTime": "2021-10-26T23:30:50Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:51.5694554Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "243582775", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceWithStatisticsTest.json new file mode 100644 index 000000000000..7775e7c2150f --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceWithStatisticsTest.json @@ -0,0 +1,176 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "564", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b9a2c9df9e6b81498754859e2500d660-1fc015d9606e3d4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d058597bceb0808d39f520df873cc702", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "524d0930-82ad-41de-b641-a41d9c5a587e", + "Date": "Mon, 25 Oct 2021 23:30:37 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4f2f19d2-a64d-45f7-a850-70a9f60843ac", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "250" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4f2f19d2-a64d-45f7-a850-70a9f60843ac?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9053fcdd622640c445116a104b8599b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3596ade1-fcd8-4057-8ea1-101ba4e569c0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:37 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": "4f2f19d2-a64d-45f7-a850-70a9f60843ac", + "lastUpdateDateTime": "2021-10-25T23:30:38Z", + "createdDateTime": "2021-10-25T23:30:38Z", + "expirationDateTime": "2021-10-26T23:30:38Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/4f2f19d2-a64d-45f7-a850-70a9f60843ac?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5bbdb49dd997808e5a9132fc5dcad991", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4bc2d314-91c4-4256-9d5f-4b11a77f04ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "jobId": "4f2f19d2-a64d-45f7-a850-70a9f60843ac", + "lastUpdateDateTime": "2021-10-25T23:30:39Z", + "createdDateTime": "2021-10-25T23:30:38Z", + "expirationDateTime": "2021-10-26T23:30:38Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:39.3566041Z", + "state": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "statistics": { + "charactersCount": 121, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "statistics": { + "charactersCount": 158, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1030528731", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceWithStatisticsTestAsync.json new file mode 100644 index 000000000000..05e09fe2514a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchConvenienceWithStatisticsTestAsync.json @@ -0,0 +1,176 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "564", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-5831dedb8b7c3b4b948f803a6ab79028-423aa3cc3c64274c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d3acc983e1836ddde491f31a2c505a60", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "17b8d338-1dce-4745-bc15-4399690b4e48", + "Date": "Mon, 25 Oct 2021 23:30:52 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/191a8575-d56a-4325-8374-f942e895f9cd", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "189" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/191a8575-d56a-4325-8374-f942e895f9cd?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "05165df81797b263847ae86c0bea97b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "746803d6-0fc6-44fc-935e-b279cf331456", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:52 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": "191a8575-d56a-4325-8374-f942e895f9cd", + "lastUpdateDateTime": "2021-10-25T23:30:52Z", + "createdDateTime": "2021-10-25T23:30:52Z", + "expirationDateTime": "2021-10-26T23:30:52Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/191a8575-d56a-4325-8374-f942e895f9cd?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d84eaa6132a7c9bbf0e418f64a0495e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f7acf0a3-696b-42c1-a0e9-03a2f567f1a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:53 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": "191a8575-d56a-4325-8374-f942e895f9cd", + "lastUpdateDateTime": "2021-10-25T23:30:52Z", + "createdDateTime": "2021-10-25T23:30:52Z", + "expirationDateTime": "2021-10-26T23:30:52Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:52.5960033Z", + "state": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "statistics": { + "charactersCount": 121, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "statistics": { + "charactersCount": 158, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "249617768", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchTest.json new file mode 100644 index 000000000000..b3c499123fe0 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchTest.json @@ -0,0 +1,162 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "564", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-159e89ccc79ccb498a50ae7a2e72af22-24728dafe0a51042-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f9a445d1945350412d315d0677481a7f", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "8033ea74-3146-46af-8d68-1f4bc5ac76ca", + "Date": "Mon, 25 Oct 2021 23:30:40 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/40adc469-e771-446a-b04c-65c73b58c8df", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "498" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/40adc469-e771-446a-b04c-65c73b58c8df", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "65613fb5afe0d6dda7bcc933fe40034b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5a4c3f13-7562-4578-8438-88838728acb4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:40 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": "40adc469-e771-446a-b04c-65c73b58c8df", + "lastUpdateDateTime": "2021-10-25T23:30:40Z", + "createdDateTime": "2021-10-25T23:30:40Z", + "expirationDateTime": "2021-10-26T23:30:40Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/40adc469-e771-446a-b04c-65c73b58c8df", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90f7abee75aa105484220d8a1c28422b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "71fec555-a85d-44a2-adb7-6211d9469fd3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "jobId": "40adc469-e771-446a-b04c-65c73b58c8df", + "lastUpdateDateTime": "2021-10-25T23:30:41Z", + "createdDateTime": "2021-10-25T23:30:40Z", + "expirationDateTime": "2021-10-26T23:30:40Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:41.5851589Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "2", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1987453593", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchTestAsync.json new file mode 100644 index 000000000000..290f3b50db14 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchTestAsync.json @@ -0,0 +1,162 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "564", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-bce310c8c7210f42bc723c77fd7d27ac-3032a62532a3c44f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a6386bfba6299a3233a2dfd0f0d681ac", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "8c00b3bf-cc8e-4457-be7e-d7e88648a18e", + "Date": "Mon, 25 Oct 2021 23:30:53 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/03300451-bb3e-48bf-919e-dea2a14af1fb", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "344" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/03300451-bb3e-48bf-919e-dea2a14af1fb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "99df5d7a9160810d2c4cc6a396618219", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4a966182-a1bb-44f3-b79d-a553e832ccbc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30: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": "03300451-bb3e-48bf-919e-dea2a14af1fb", + "lastUpdateDateTime": "2021-10-25T23:30:54Z", + "createdDateTime": "2021-10-25T23:30:53Z", + "expirationDateTime": "2021-10-26T23:30:53Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/03300451-bb3e-48bf-919e-dea2a14af1fb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bee2f736dbdadf841f035712b1c9634d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4891c34e-5446-4311-9f94-c438ce3a15d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "115" + }, + "ResponseBody": { + "jobId": "03300451-bb3e-48bf-919e-dea2a14af1fb", + "lastUpdateDateTime": "2021-10-25T23:30:54Z", + "createdDateTime": "2021-10-25T23:30:53Z", + "expirationDateTime": "2021-10-26T23:30:53Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:54.585657Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "2", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "542519583", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithErrorTest.json new file mode 100644 index 000000000000..a08957bf5d4c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithErrorTest.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-08bb2a14dd11774db6847f1984b6df76-680f00f0dfd94a45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b3f00d59ecdaec71d23ecfd808fcaa3b", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1d4fe19d-29a5-488d-98d1-92427f7dd13a", + "Date": "Mon, 25 Oct 2021 23:30:42 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a2d96838-964c-4902-98a5-9a30c4bcde50", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a2d96838-964c-4902-98a5-9a30c4bcde50", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dea2929332df74905c54c3965e08e957", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b33d63f8-696e-4044-8bfa-448828f984c7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "100" + }, + "ResponseBody": { + "jobId": "a2d96838-964c-4902-98a5-9a30c4bcde50", + "lastUpdateDateTime": "2021-10-25T23:30:42Z", + "createdDateTime": "2021-10-25T23:30:42Z", + "expirationDateTime": "2021-10-26T23:30:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/a2d96838-964c-4902-98a5-9a30c4bcde50", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c7a0cb56d21b31947ac409a90ebc30d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "92a5ae5b-5c18-4857-869c-4398cca885e3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "77" + }, + "ResponseBody": { + "jobId": "a2d96838-964c-4902-98a5-9a30c4bcde50", + "lastUpdateDateTime": "2021-10-25T23:30:42Z", + "createdDateTime": "2021-10-25T23:30:42Z", + "expirationDateTime": "2021-10-26T23:30:42Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:42.5131912Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "651258290", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithErrorTestAsync.json new file mode 100644 index 000000000000..4c0bbf22c5dc --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithErrorTestAsync.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-73da32b2dba0cf47b49a9e3cc8abf32a-a9f310825c352d48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30f3d0aaed959b158d1c03a1c38ed196", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "5cdceb06-8921-4ae5-9abe-8db34654ae80", + "Date": "Mon, 25 Oct 2021 23:30:55 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/80884bf4-90d5-4fea-bca3-96bc07455cad", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "208" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/80884bf4-90d5-4fea-bca3-96bc07455cad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c825cb4a1b45c0a38d00c26413634bd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eae70816-b3ba-4f84-b527-f53010eada63", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30: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": "80884bf4-90d5-4fea-bca3-96bc07455cad", + "lastUpdateDateTime": "2021-10-25T23:30:55Z", + "createdDateTime": "2021-10-25T23:30:55Z", + "expirationDateTime": "2021-10-26T23:30:55Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/80884bf4-90d5-4fea-bca3-96bc07455cad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cbdf5eda5e441b482047cd1f76afb55d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a2c3e7f5-7c1e-482a-bc07-13b598e9962e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2805" + }, + "ResponseBody": { + "jobId": "80884bf4-90d5-4fea-bca3-96bc07455cad", + "lastUpdateDateTime": "2021-10-25T23:30:56Z", + "createdDateTime": "2021-10-25T23:30:55Z", + "expirationDateTime": "2021-10-26T23:30:55Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:56.0126405Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1364887234", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithStatisticsTest.json new file mode 100644 index 000000000000..d0c8fac11a82 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithStatisticsTest.json @@ -0,0 +1,176 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "564", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-bd2d226ccc422f43b873c64bca28dfdf-42c0e74fda13234a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1d267b1dc6373f818e2ae2b8b6729718", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "928a0271-7048-4a0e-ae24-154123093b6b", + "Date": "Mon, 25 Oct 2021 23:30:43 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7733a491-aee0-45b2-be36-777f959e47a2", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "266" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7733a491-aee0-45b2-be36-777f959e47a2?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d6a026686d0319ef4fd032da4c5ed795", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "09e04bbc-8888-455a-a517-9b2200e6d147", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30: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": "7733a491-aee0-45b2-be36-777f959e47a2", + "lastUpdateDateTime": "2021-10-25T23:30:44Z", + "createdDateTime": "2021-10-25T23:30:43Z", + "expirationDateTime": "2021-10-26T23:30:43Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7733a491-aee0-45b2-be36-777f959e47a2?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9bd4d20f26905b2abbe44e8557974917", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9a917f23-c7d7-4464-8558-a1ba1870c044", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1462" + }, + "ResponseBody": { + "jobId": "7733a491-aee0-45b2-be36-777f959e47a2", + "lastUpdateDateTime": "2021-10-25T23:30:44Z", + "createdDateTime": "2021-10-25T23:30:43Z", + "expirationDateTime": "2021-10-26T23:30:43Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:44.5144437Z", + "state": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "1", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "statistics": { + "charactersCount": 121, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "2", + "classifications": [], + "statistics": { + "charactersCount": 158, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1494605637", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithStatisticsTestAsync.json new file mode 100644 index 000000000000..13a81a9ec0da --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyBatchWithStatisticsTestAsync.json @@ -0,0 +1,176 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "564", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-6de2341430ea484687d128f28902333f-118909304a4adc4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "906b58cad58335a5847440566fdf9175", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "24920998-94e3-4708-92de-2cdf754dd06b", + "Date": "Mon, 25 Oct 2021 23:30:59 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2a64641d-526c-4746-8ba4-4d1f35eff041", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "548" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2a64641d-526c-4746-8ba4-4d1f35eff041?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d7bd2b96de4822366676f3e88d30af2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7234a565-0c9f-42c0-a36f-1d29f13fb540", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30: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": "2a64641d-526c-4746-8ba4-4d1f35eff041", + "lastUpdateDateTime": "2021-10-25T23:31:00Z", + "createdDateTime": "2021-10-25T23:30:59Z", + "expirationDateTime": "2021-10-26T23:30:59Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2a64641d-526c-4746-8ba4-4d1f35eff041?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0b245d4008ebad99d3b8e00231144551", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f111499-41fa-4d51-a34c-88eb2af0448b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:31:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "2a64641d-526c-4746-8ba4-4d1f35eff041", + "lastUpdateDateTime": "2021-10-25T23:31:00Z", + "createdDateTime": "2021-10-25T23:30:59Z", + "expirationDateTime": "2021-10-26T23:30:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:31:00.7298417Z", + "state": "succeeded", + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "1", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "statistics": { + "charactersCount": 121, + "transactionsCount": 1 + }, + "warnings": [] + }, + { + "id": "2", + "classifications": [], + "statistics": { + "charactersCount": 158, + "transactionsCount": 1 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "156613535", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithDisableServiceLogs.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithDisableServiceLogs.json new file mode 100644 index 000000000000..40334c12fa9c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithDisableServiceLogs.json @@ -0,0 +1,163 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "585", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-fbac091426a81341887832da4c0f3c6a-025ee3304fbf3f4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "240aa7eee3f5791310c87f0aea43f279", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025", + "loggingOptOut": true + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "9cd20acb-f4ee-4218-9f4d-4dd252a6b3f0", + "Date": "Mon, 25 Oct 2021 23:30:46 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5c74d590-1850-4cc5-9321-3b954151987c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "225" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5c74d590-1850-4cc5-9321-3b954151987c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "033483e2516ec9aa820c90ec10e84892", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dac39c3d-6b50-4f3f-bdec-c923c7f0fcab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30: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": "5c74d590-1850-4cc5-9321-3b954151987c", + "lastUpdateDateTime": "2021-10-25T23:30:46Z", + "createdDateTime": "2021-10-25T23:30:46Z", + "expirationDateTime": "2021-10-26T23:30:46Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5c74d590-1850-4cc5-9321-3b954151987c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ac8394b2f677be1091d284ab791b8c09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7bea1951-1154-4cff-98a8-cc6275734a22", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:48 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": "5c74d590-1850-4cc5-9321-3b954151987c", + "lastUpdateDateTime": "2021-10-25T23:30:47Z", + "createdDateTime": "2021-10-25T23:30:46Z", + "expirationDateTime": "2021-10-26T23:30:46Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:47.5601128Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1222401182", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithDisableServiceLogsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithDisableServiceLogsAsync.json new file mode 100644 index 000000000000..98f16c3ab3ca --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithDisableServiceLogsAsync.json @@ -0,0 +1,163 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "585", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-42099ef9369d2e47b3d9d951d78db6f4-9f1f0c21773c824c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0cc53751b5e8088ad70bde584eea5b24", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025", + "loggingOptOut": true + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "970591ec-9d37-491d-b30e-d502f084ec88", + "Date": "Mon, 25 Oct 2021 23:31:01 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/81429d63-0b67-4744-b8bd-33e9c8ca184b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "162" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/81429d63-0b67-4744-b8bd-33e9c8ca184b", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "920ad4e241f22235a613d50d0c9708ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "48a06eb2-46b1-4a73-9034-ee67b8b940a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:31: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": "81429d63-0b67-4744-b8bd-33e9c8ca184b", + "lastUpdateDateTime": "2021-10-25T23:31:01Z", + "createdDateTime": "2021-10-25T23:31:01Z", + "expirationDateTime": "2021-10-26T23:31:01Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/81429d63-0b67-4744-b8bd-33e9c8ca184b", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "40e24aa3090e5727acea7d71b9400e84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff2abd8a-c427-4b90-bd8e-b99b9329146b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:31:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "301" + }, + "ResponseBody": { + "jobId": "81429d63-0b67-4744-b8bd-33e9c8ca184b", + "lastUpdateDateTime": "2021-10-25T23:31:02Z", + "createdDateTime": "2021-10-25T23:31:01Z", + "expirationDateTime": "2021-10-26T23:31:01Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:31:02.334278Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1982339428", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithMultipleActions.json new file mode 100644 index 000000000000..60f25b959619 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithMultipleActions.json @@ -0,0 +1,199 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "806", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-571defe60650174191a2b6ddaa709e02-57aa69e676755343-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "40e1470f487c81679e7998dff1902916", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025", + "loggingOptOut": true + }, + "taskName": "MultiCategoryClassifyWithDisabledServiceLogs" + }, + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + }, + "taskName": "MultiCategoryClassify" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0e7dd7a9-6460-4f4b-913e-18151b43a60d", + "Date": "Mon, 25 Oct 2021 23:30:48 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/effc8d5a-225f-4002-82d4-e7068063a9aa", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "238" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/effc8d5a-225f-4002-82d4-e7068063a9aa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "98696fff1ddb7f3bf091404a2acfd4d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9e653253-a595-4616-b3a6-e24dd78205d0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30: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": "effc8d5a-225f-4002-82d4-e7068063a9aa", + "lastUpdateDateTime": "2021-10-25T23:30:48Z", + "createdDateTime": "2021-10-25T23:30:48Z", + "expirationDateTime": "2021-10-26T23:30:48Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/effc8d5a-225f-4002-82d4-e7068063a9aa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6167bef3ddbaeadd0104a6243fef0893", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a3e18335-5480-4c73-81d2-05723297fd20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:30:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "710" + }, + "ResponseBody": { + "jobId": "effc8d5a-225f-4002-82d4-e7068063a9aa", + "lastUpdateDateTime": "2021-10-25T23:30:49Z", + "createdDateTime": "2021-10-25T23:30:48Z", + "expirationDateTime": "2021-10-26T23:30:48Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:30:48.9910093Z", + "taskName": "MultiCategoryClassifyWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + }, + { + "lastUpdateDateTime": "2021-10-25T23:30:49.0357728Z", + "taskName": "MultiCategoryClassify", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "647174410", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithMultipleActionsAsync.json new file mode 100644 index 000000000000..e1fd64cc6dae --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/MultiCategoryClassifyTests/MultiCategoryClassifyWithMultipleActionsAsync.json @@ -0,0 +1,235 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "806", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-07ea2d398f4f8541b4791313ce109972-607276714faca145-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2fa05d10916b53aaaee0a24605592c6a", + "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": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025", + "loggingOptOut": true + }, + "taskName": "MultiCategoryClassifyWithDisabledServiceLogs" + }, + { + "parameters": { + "project-name": "7cdace98-537b-494a-b69a-c19754718025", + "deployment-name": "7cdace98-537b-494a-b69a-c19754718025" + }, + "taskName": "MultiCategoryClassify" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0aeecdec-9a0e-4450-8eb6-e52bb6f6e40d", + "Date": "Mon, 25 Oct 2021 23:43:56 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6417419d-b576-4959-911a-a83076f959e0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "645" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6417419d-b576-4959-911a-a83076f959e0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "71858327133e398fb9ddae770955e4e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f704865e-b630-4192-a15f-6e2b1d063df9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23: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": "6417419d-b576-4959-911a-a83076f959e0", + "lastUpdateDateTime": "2021-10-25T23:43:57Z", + "createdDateTime": "2021-10-25T23:43:56Z", + "expirationDateTime": "2021-10-26T23:43:56Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6417419d-b576-4959-911a-a83076f959e0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f4915ed0c4372b6b01dbaf4cbb215edc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "285d003a-7a2e-4a9f-8623-e3acb0876b50", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:43:57 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": "6417419d-b576-4959-911a-a83076f959e0", + "lastUpdateDateTime": "2021-10-25T23:43:57Z", + "createdDateTime": "2021-10-25T23:43:56Z", + "expirationDateTime": "2021-10-26T23:43:56Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6417419d-b576-4959-911a-a83076f959e0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5c081a5c40a2fdcace67758de2324a58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb2a48ea-9dfc-4792-be36-5fff9c1497fb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:43:59 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": "6417419d-b576-4959-911a-a83076f959e0", + "lastUpdateDateTime": "2021-10-25T23:43:58Z", + "createdDateTime": "2021-10-25T23:43:56Z", + "expirationDateTime": "2021-10-26T23:43:56Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:43:58.6826991Z", + "taskName": "MultiCategoryClassifyWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + }, + { + "lastUpdateDateTime": "2021-10-25T23:43:58.6909981Z", + "taskName": "MultiCategoryClassify", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "classifications": [ + { + "category": "BookRestaurant", + "confidenceScore": 0.97 + } + ], + "warnings": [] + }, + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "7cdace98-537b-494a-b69a-c19754718025", + "deploymentName": "7cdace98-537b-494a-b69a-c19754718025" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "120428012", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME": "7cdace98-537b-494a-b69a-c19754718025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchConvenienceTest.json new file mode 100644 index 000000000000..68bfbbde8668 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchConvenienceTest.json @@ -0,0 +1,244 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "410", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-cb0e9609be88344c84ca9f19654a0750-24abc9fdcb108e4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c3eb54e49604a79312c6b18e5927ea06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + }, + { + "id": "1", + "text": "Capital Call #20 for Berkshire Multifamily.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "adc6ed34-afb1-4f4d-9680-6be09d8c70e9", + "Date": "Mon, 25 Oct 2021 23:44:01 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/099509b2-ac11-4431-a2b7-690da3cffaf4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1487" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/099509b2-ac11-4431-a2b7-690da3cffaf4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8dc4d48801b8b544409fecdfe93766ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "372235db-d776-4e6d-80eb-0ec457e404b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:01 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": "099509b2-ac11-4431-a2b7-690da3cffaf4", + "lastUpdateDateTime": "2021-10-25T23:44:02Z", + "createdDateTime": "2021-10-25T23:44:00Z", + "expirationDateTime": "2021-10-26T23:44:00Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/099509b2-ac11-4431-a2b7-690da3cffaf4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc84030af5b83db90df750441ea7e52f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fc981394-bb7d-4f21-9ab3-3390cbf9af1f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:02 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": "099509b2-ac11-4431-a2b7-690da3cffaf4", + "lastUpdateDateTime": "2021-10-25T23:44:03Z", + "createdDateTime": "2021-10-25T23:44:00Z", + "expirationDateTime": "2021-10-26T23:44:00Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/099509b2-ac11-4431-a2b7-690da3cffaf4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "52f7606988dbe2fb10358364aab3bdda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ba32a365-e4bf-496d-b389-7df4a2f485b5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "jobId": "099509b2-ac11-4431-a2b7-690da3cffaf4", + "lastUpdateDateTime": "2021-10-25T23:44:03Z", + "createdDateTime": "2021-10-25T23:44:00Z", + "expirationDateTime": "2021-10-26T23:44:00Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:03.2192333Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "Berkshire Multifamily", + "category": "location_name", + "offset": 21, + "length": 21, + "confidenceScore": 0.46 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "409427476", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchConvenienceTestAsync.json new file mode 100644 index 000000000000..ebc35e94f26e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchConvenienceTestAsync.json @@ -0,0 +1,208 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "410", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-39898231eecf3347b8e972ebaa2f26c8-48af94b8b5507a4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "105abf0c84dde23d1d3ef35c802eeb38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + }, + { + "id": "1", + "text": "Capital Call #20 for Berkshire Multifamily.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a78fb77a-78c7-4bb2-bb4a-f09d50f8402b", + "Date": "Mon, 25 Oct 2021 23:44:22 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/fe8952dc-2960-4506-b9e4-afc6baebaa4f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "302" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/fe8952dc-2960-4506-b9e4-afc6baebaa4f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9686c181314c20590468c22aff06b020", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ca8b7bed-d5fc-4a2d-9db3-8197c83f668d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "fe8952dc-2960-4506-b9e4-afc6baebaa4f", + "lastUpdateDateTime": "2021-10-25T23:44:23Z", + "createdDateTime": "2021-10-25T23:44:23Z", + "expirationDateTime": "2021-10-26T23:44:23Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/fe8952dc-2960-4506-b9e4-afc6baebaa4f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "77ad4f5c0741abde30727c4d4a50d26f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8c06119e-4a6f-4dd2-9c24-f0c0b96cdbe4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "fe8952dc-2960-4506-b9e4-afc6baebaa4f", + "lastUpdateDateTime": "2021-10-25T23:44:23Z", + "createdDateTime": "2021-10-25T23:44:23Z", + "expirationDateTime": "2021-10-26T23:44:23Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:23.9076893Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "Berkshire Multifamily", + "category": "location_name", + "offset": 21, + "length": 21, + "confidenceScore": 0.46 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "950474278", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchTest.json new file mode 100644 index 000000000000..786acac422bc --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchTest.json @@ -0,0 +1,243 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "493", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-28bc5b2593a13946bf7fa51d5cf62c0b-8bcd5a00c7b68d4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "edd30e0cf5da712a7f16e1fbdd0ac637", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + }, + { + "id": "2", + "text": "Un informe reciente de la Oficina de Responsabilidad del Gobierno encontr\u00F3 un aumento dram\u00E1tico en el petr\u00F3leo.", + "language": "es" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "cf8902b8-a11d-48d7-85c4-f51ee68d8fb6", + "Date": "Mon, 25 Oct 2021 23:44:04 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/05c0e602-3e16-4fbf-86e0-7583e956999b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "409" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/05c0e602-3e16-4fbf-86e0-7583e956999b", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4eae7ee08e5fea46934d00605573c4eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0cf56ac2-d0fd-445b-b50b-45bbac04f519", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "jobId": "05c0e602-3e16-4fbf-86e0-7583e956999b", + "lastUpdateDateTime": "2021-10-25T23:44:04Z", + "createdDateTime": "2021-10-25T23:44:04Z", + "expirationDateTime": "2021-10-26T23:44:04Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/05c0e602-3e16-4fbf-86e0-7583e956999b", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8c4a55f93b72b963f2befa0124096077", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fca99072-bd46-4d0c-ae6f-f1e0712ba6da", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "222" + }, + "ResponseBody": { + "jobId": "05c0e602-3e16-4fbf-86e0-7583e956999b", + "lastUpdateDateTime": "2021-10-25T23:44:05Z", + "createdDateTime": "2021-10-25T23:44:04Z", + "expirationDateTime": "2021-10-26T23:44:04Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:05.9193339Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "reciente", + "category": "object_select", + "offset": 11, + "length": 8, + "confidenceScore": 0.05 + }, + { + "text": "Responsabilidad", + "category": "state", + "offset": 37, + "length": 15, + "confidenceScore": 0.03 + }, + { + "text": "del", + "category": "restaurant_name", + "offset": 53, + "length": 3, + "confidenceScore": 0.06 + }, + { + "text": "Gobierno", + "category": "location_name", + "offset": 57, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "dram\u00E1tico", + "category": "sort", + "offset": 86, + "length": 9, + "confidenceScore": 0.03 + }, + { + "text": "petr\u00F3leo", + "category": "timeRange", + "offset": 102, + "length": 8, + "confidenceScore": 0.02 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "871702162", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchTestAsync.json new file mode 100644 index 000000000000..5f3bcea532c0 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchTestAsync.json @@ -0,0 +1,243 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "493", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-273f1964a1600848a2f4f0b9d65c2a78-12635d0d6f0dff41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4b0353aa0f1651f2538f45eecc005c85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + }, + { + "id": "2", + "text": "Un informe reciente de la Oficina de Responsabilidad del Gobierno encontr\u00F3 un aumento dram\u00E1tico en el petr\u00F3leo.", + "language": "es" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "caec8457-e7f6-4007-b340-6aae267fd0c0", + "Date": "Mon, 25 Oct 2021 23:44:24 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6e7226c3-9471-4607-909a-59f99f1b3c95", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "179" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6e7226c3-9471-4607-909a-59f99f1b3c95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5b675418fae20b70884cffb922a64ed4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75efc2a1-8216-43f6-99d3-21dc0366b216", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:24 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": "6e7226c3-9471-4607-909a-59f99f1b3c95", + "lastUpdateDateTime": "2021-10-25T23:44:24Z", + "createdDateTime": "2021-10-25T23:44:24Z", + "expirationDateTime": "2021-10-26T23:44:24Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6e7226c3-9471-4607-909a-59f99f1b3c95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "83ce8125249808d136945c8ed4f7794f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5ffd11de-db8e-48d9-951e-4bf684b67d31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:25 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": "6e7226c3-9471-4607-909a-59f99f1b3c95", + "lastUpdateDateTime": "2021-10-25T23:44:25Z", + "createdDateTime": "2021-10-25T23:44:24Z", + "expirationDateTime": "2021-10-26T23:44:24Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:25.2913564Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "reciente", + "category": "object_select", + "offset": 11, + "length": 8, + "confidenceScore": 0.05 + }, + { + "text": "Responsabilidad", + "category": "state", + "offset": 37, + "length": 15, + "confidenceScore": 0.03 + }, + { + "text": "del", + "category": "restaurant_name", + "offset": 53, + "length": 3, + "confidenceScore": 0.06 + }, + { + "text": "Gobierno", + "category": "location_name", + "offset": 57, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "dram\u00E1tico", + "category": "sort", + "offset": 86, + "length": 9, + "confidenceScore": 0.03 + }, + { + "text": "petr\u00F3leo", + "category": "timeRange", + "offset": 102, + "length": 8, + "confidenceScore": 0.02 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1000683860", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithErrorTest.json new file mode 100644 index 000000000000..5296d6a4d520 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithErrorTest.json @@ -0,0 +1,218 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "406", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b22c4b23b9f8074e8d85148647842986-1361ca4e1e3b214d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "74c58b3926e0889e80427ddefcedfe72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "My cat might need to see a veterinarian.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1abe2a8f-2cd0-4e48-83a5-468861ecfa43", + "Date": "Mon, 25 Oct 2021 23:44:06 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/212bed2b-56cc-4e4f-a683-0ddf595e3c84", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "458" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/212bed2b-56cc-4e4f-a683-0ddf595e3c84", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a4929114c7dba9c0bda3307af4684b7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b61cbb2a-36d9-49b4-8bf8-807b755c78d9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:06 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": "212bed2b-56cc-4e4f-a683-0ddf595e3c84", + "lastUpdateDateTime": "2021-10-25T23:44:06Z", + "createdDateTime": "2021-10-25T23:44:06Z", + "expirationDateTime": "2021-10-26T23:44:06Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/212bed2b-56cc-4e4f-a683-0ddf595e3c84", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e7adef42e44692733d49d530d3684c2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb10563a-1fd6-4f63-9a80-0ed7fe830ddd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "103" + }, + "ResponseBody": { + "jobId": "212bed2b-56cc-4e4f-a683-0ddf595e3c84", + "lastUpdateDateTime": "2021-10-25T23:44:07Z", + "createdDateTime": "2021-10-25T23:44:06Z", + "expirationDateTime": "2021-10-26T23:44:06Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:07.1943732Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "service", + "offset": 0, + "length": 9, + "confidenceScore": 0.07 + }, + { + "text": "Bill Gates", + "category": "artist", + "offset": 25, + "length": 10, + "confidenceScore": 0.58 + }, + { + "text": "Paul Allen", + "category": "artist", + "offset": 40, + "length": 10, + "confidenceScore": 0.78 + }, + { + "text": "and", + "category": "party_size_description", + "offset": 36, + "length": 3, + "confidenceScore": 0.32 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "cat", + "category": "current_location", + "offset": 3, + "length": 3, + "confidenceScore": 0.05 + }, + { + "text": "veterinarian", + "category": "facility", + "offset": 27, + "length": 12, + "confidenceScore": 0.06 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1422884364", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithErrorTestAsync.json new file mode 100644 index 000000000000..203764f8735b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithErrorTestAsync.json @@ -0,0 +1,218 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "406", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-bef560c300110d4dafb32d70ff20505e-e888a86650f2a84a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dbe0afe67ce79b2b693dae40ad813deb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "My cat might need to see a veterinarian.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "57abf738-c604-4125-9d64-4ad8fe96fad0", + "Date": "Mon, 25 Oct 2021 23:44:25 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/35d26270-fb43-4334-8535-d73216005c86", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "316" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/35d26270-fb43-4334-8535-d73216005c86", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c4a0d928bf6e8664354ca0981c7872fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "96115a25-1181-439f-b5d1-dd7419fbc8f6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:25 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": "35d26270-fb43-4334-8535-d73216005c86", + "lastUpdateDateTime": "2021-10-25T23:44:26Z", + "createdDateTime": "2021-10-25T23:44:26Z", + "expirationDateTime": "2021-10-26T23:44:26Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/35d26270-fb43-4334-8535-d73216005c86", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1680984ed338facc289226a82980a8fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "847bac52-7607-4be1-932b-62b4bc43e8ea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "87" + }, + "ResponseBody": { + "jobId": "35d26270-fb43-4334-8535-d73216005c86", + "lastUpdateDateTime": "2021-10-25T23:44:27Z", + "createdDateTime": "2021-10-25T23:44:26Z", + "expirationDateTime": "2021-10-26T23:44:26Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:27.1481162Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "service", + "offset": 0, + "length": 9, + "confidenceScore": 0.07 + }, + { + "text": "Bill Gates", + "category": "artist", + "offset": 25, + "length": 10, + "confidenceScore": 0.58 + }, + { + "text": "Paul Allen", + "category": "artist", + "offset": 40, + "length": 10, + "confidenceScore": 0.78 + }, + { + "text": "and", + "category": "party_size_description", + "offset": 36, + "length": 3, + "confidenceScore": 0.32 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "cat", + "category": "current_location", + "offset": 3, + "length": 3, + "confidenceScore": 0.05 + }, + { + "text": "veterinarian", + "category": "facility", + "offset": 27, + "length": 12, + "confidenceScore": 0.06 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1044415089", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithNullIdTest.json new file mode 100644 index 000000000000..178f34860f0c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithNullIdTest.json @@ -0,0 +1,66 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "253", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-a70ebe4e3cca0b489142d9ee12505df5-785f41c15f43664a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "701610698e4e2836b2896021426da6ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": null, + "text": "Hello world", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "2f144cf5-e8d6-47db-9feb-bcaafefb3bd4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "At least one document is missing an Id attribute." + } + } + } + } + ], + "Variables": { + "RandomSeed": "1937417632", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithNullIdTestAsync.json new file mode 100644 index 000000000000..95564e0896f4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesBatchWithNullIdTestAsync.json @@ -0,0 +1,66 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "253", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-584884636db3f54caeaf93f089b866b7-7fd4fd76d0625044-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "031f365b46e49dc4ece8c8872a44234a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": null, + "text": "Hello world", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "9a654465-a978-4add-815a-e577bc79b835", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "At least one document is missing an Id attribute." + } + } + } + } + ], + "Variables": { + "RandomSeed": "1272363559", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesTest.json new file mode 100644 index 000000000000..420065267bf5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesTest.json @@ -0,0 +1,190 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "330", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-ab5e7d63eceb774a8b64cab275905b40-3d18fe887dca2a42-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "70dcf60840f7ecaa22659829d5e36ecf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c3692a35-3df0-4662-9ab0-501dd6617528", + "Date": "Mon, 25 Oct 2021 23:44:07 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d51f89ee-aeda-46a5-86fe-bcc53db1c9a4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "497" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d51f89ee-aeda-46a5-86fe-bcc53db1c9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8f5d632e99738948001123455ce65d3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "11f1fbd8-9d2f-4312-b387-df8acdd6d6de", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "d51f89ee-aeda-46a5-86fe-bcc53db1c9a4", + "lastUpdateDateTime": "2021-10-25T23:44:08Z", + "createdDateTime": "2021-10-25T23:44:08Z", + "expirationDateTime": "2021-10-26T23:44:08Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d51f89ee-aeda-46a5-86fe-bcc53db1c9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8a32edc4d34fec971212a900a31d191e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4ea28799-db5e-4cf1-a760-a217417ae7bc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5643" + }, + "ResponseBody": { + "jobId": "d51f89ee-aeda-46a5-86fe-bcc53db1c9a4", + "lastUpdateDateTime": "2021-10-25T23:44:09Z", + "createdDateTime": "2021-10-25T23:44:08Z", + "expirationDateTime": "2021-10-26T23:44:08Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:09.1622341Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1714539574", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesTestAsync.json new file mode 100644 index 000000000000..0512354abdda --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesTestAsync.json @@ -0,0 +1,190 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "330", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-aed2fa320a12054faa524e2382e8780d-46bb3695ea07df46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "64a871e0e89498a4691673572a2e8f64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "f1670469-3b6b-4ad2-987d-1edb421808f3", + "Date": "Mon, 25 Oct 2021 23:44:27 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/66b4e88e-1a2b-4941-a20b-76eeafc840ba", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "426" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/66b4e88e-1a2b-4941-a20b-76eeafc840ba", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c6d92b6214f4777946cbe3bff02452bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1a8cc61e-5b82-4796-8c73-ee9bfc85c22a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "66b4e88e-1a2b-4941-a20b-76eeafc840ba", + "lastUpdateDateTime": "2021-10-25T23:44:28Z", + "createdDateTime": "2021-10-25T23:44:27Z", + "expirationDateTime": "2021-10-26T23:44:27Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/66b4e88e-1a2b-4941-a20b-76eeafc840ba", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e0413a2ec18584e4fcb6ba8bf733acdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "230efc2a-d99a-4ee3-b253-4f09d86e5671", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "85" + }, + "ResponseBody": { + "jobId": "66b4e88e-1a2b-4941-a20b-76eeafc840ba", + "lastUpdateDateTime": "2021-10-25T23:44:28Z", + "createdDateTime": "2021-10-25T23:44:27Z", + "expirationDateTime": "2021-10-26T23:44:27Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:28.9670564Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "616315711", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithADDTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithADDTest.json new file mode 100644 index 000000000000..e3fabcdead5f --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithADDTest.json @@ -0,0 +1,189 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "Content-Length": "330", + "Content-Type": "application/json", + "traceparent": "00-27e252c6f642fb4e99289054f9711f7e-19daacf02f218142-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a7cf432080fde2c89a073aac22fd8cf8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2c926f45-9de3-4328-be1d-2044b75484d8", + "Date": "Mon, 25 Oct 2021 23:44:18 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/606c78ff-c827-425c-8667-ed25d655deb5", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "525" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/606c78ff-c827-425c-8667-ed25d655deb5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1b2838679a509c38d5ca06cb65746c02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "52a94e0d-8a2c-4360-86ce-a0d30d81bdc0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "606c78ff-c827-425c-8667-ed25d655deb5", + "lastUpdateDateTime": "2021-10-25T23:44:18Z", + "createdDateTime": "2021-10-25T23:44:17Z", + "expirationDateTime": "2021-10-26T23:44:17Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/606c78ff-c827-425c-8667-ed25d655deb5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30e9f1f5dda3cb601844e6e5712ea6f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d56f9451-13b6-4022-a272-f3237ca18bfb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:19 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": "606c78ff-c827-425c-8667-ed25d655deb5", + "lastUpdateDateTime": "2021-10-25T23:44:18Z", + "createdDateTime": "2021-10-25T23:44:17Z", + "expirationDateTime": "2021-10-26T23:44:17Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:18.9134218Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1564879162", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithADDTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithADDTestAsync.json new file mode 100644 index 000000000000..d86214661857 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithADDTestAsync.json @@ -0,0 +1,189 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "Content-Length": "330", + "Content-Type": "application/json", + "traceparent": "00-a71a78f4f0fdd240b8cdc36e95f90d59-74cb7d79260e804f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c519ae9cbcc544c49e93250f794cc3bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0b9d4233-9620-4256-9961-c3088a797b5f", + "Date": "Mon, 25 Oct 2021 23:44:29 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8063a94a-42e6-4cb6-8afa-1d84851845fd", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "384" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8063a94a-42e6-4cb6-8afa-1d84851845fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8db83c67bb2b7379465aa511ba4e1cde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8bce40fc-8320-44d5-a5c9-3a2c7611f4ab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "8063a94a-42e6-4cb6-8afa-1d84851845fd", + "lastUpdateDateTime": "2021-10-25T23:44:30Z", + "createdDateTime": "2021-10-25T23:44:29Z", + "expirationDateTime": "2021-10-26T23:44:29Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/8063a94a-42e6-4cb6-8afa-1d84851845fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f4161d32657e6bf96fc78257eacc8a78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "26d2d3ca-b008-4cf0-aae9-d14e5a1f9e2b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "jobId": "8063a94a-42e6-4cb6-8afa-1d84851845fd", + "lastUpdateDateTime": "2021-10-25T23:44:30Z", + "createdDateTime": "2021-10-25T23:44:29Z", + "expirationDateTime": "2021-10-26T23:44:29Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:30.2914701Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1244106047", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithLanguageTest.json new file mode 100644 index 000000000000..0c6f100003c7 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithLanguageTest.json @@ -0,0 +1,154 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "367", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-27f7c1ce4ba76140b7eeb021b19459bf-f9bc67146fec4a46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "20b2726b6f72ee77862e98bbfb8ef41b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Un informe reciente de la Oficina de Responsabilidad del Gobierno encontr\u00F3 un aumento dram\u00E1tico en el petr\u00F3leo.", + "language": "es" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "d37429a9-9c44-403e-9ed2-21c36ba08892", + "Date": "Mon, 25 Oct 2021 23:44:19 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/707d0e21-be09-42a3-977e-745bc424f015", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "336" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/707d0e21-be09-42a3-977e-745bc424f015", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "96569e75810e8734457b06ee9d1971d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ba5bdebf-1fd7-4d71-91f4-49ccb6fd6334", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1029" + }, + "ResponseBody": { + "jobId": "707d0e21-be09-42a3-977e-745bc424f015", + "lastUpdateDateTime": "2021-10-25T23:44:20Z", + "createdDateTime": "2021-10-25T23:44:19Z", + "expirationDateTime": "2021-10-26T23:44:19Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:20.2739158Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "reciente", + "category": "object_select", + "offset": 11, + "length": 8, + "confidenceScore": 0.05 + }, + { + "text": "Responsabilidad", + "category": "state", + "offset": 37, + "length": 15, + "confidenceScore": 0.03 + }, + { + "text": "del", + "category": "restaurant_name", + "offset": 53, + "length": 3, + "confidenceScore": 0.06 + }, + { + "text": "Gobierno", + "category": "location_name", + "offset": 57, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "dram\u00E1tico", + "category": "sort", + "offset": 86, + "length": 9, + "confidenceScore": 0.03 + }, + { + "text": "petr\u00F3leo", + "category": "timeRange", + "offset": 102, + "length": 8, + "confidenceScore": 0.02 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "522932983", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithLanguageTestAsync.json new file mode 100644 index 000000000000..c6a3d2eeb749 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithLanguageTestAsync.json @@ -0,0 +1,190 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "367", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-f088168bd99bb0498030d887dbaea2af-9c44b12bd7705c4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d887a21c360dd0e46c78f0debb18a38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Un informe reciente de la Oficina de Responsabilidad del Gobierno encontr\u00F3 un aumento dram\u00E1tico en el petr\u00F3leo.", + "language": "es" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "68ec5ecd-2305-4b9a-92b8-f29ddd46a0ea", + "Date": "Mon, 25 Oct 2021 23:44:30 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2a342c5d-0d11-4b32-9ea7-3b15036de3c8", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "139" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2a342c5d-0d11-4b32-9ea7-3b15036de3c8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6ad520feb24348dd00a9200b83146ed4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c1ae93ce-9c26-43fa-8519-123dbc5fe3bd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "2a342c5d-0d11-4b32-9ea7-3b15036de3c8", + "lastUpdateDateTime": "2021-10-25T23:44:31Z", + "createdDateTime": "2021-10-25T23:44:31Z", + "expirationDateTime": "2021-10-26T23:44:31Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/2a342c5d-0d11-4b32-9ea7-3b15036de3c8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f07410ac1e95eae7b182f05067ffa112", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7eda0849-b282-460d-8dd4-bb225fe098b3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "2a342c5d-0d11-4b32-9ea7-3b15036de3c8", + "lastUpdateDateTime": "2021-10-25T23:44:31Z", + "createdDateTime": "2021-10-25T23:44:31Z", + "expirationDateTime": "2021-10-26T23:44:31Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:31.9674585Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "reciente", + "category": "object_select", + "offset": 11, + "length": 8, + "confidenceScore": 0.05 + }, + { + "text": "Responsabilidad", + "category": "state", + "offset": 37, + "length": 15, + "confidenceScore": 0.03 + }, + { + "text": "del", + "category": "restaurant_name", + "offset": 53, + "length": 3, + "confidenceScore": 0.06 + }, + { + "text": "Gobierno", + "category": "location_name", + "offset": 57, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "dram\u00E1tico", + "category": "sort", + "offset": 86, + "length": 9, + "confidenceScore": 0.03 + }, + { + "text": "petr\u00F3leo", + "category": "timeRange", + "offset": 102, + "length": 8, + "confidenceScore": 0.02 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "120361969", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithMultipleActions.json new file mode 100644 index 000000000000..b99b897faf5e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithMultipleActions.json @@ -0,0 +1,291 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "656", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-a32397aaf068d0479dfea7d3d1cb8c31-6b14d22f2e24334d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "811798329e93c7b0eee851ed76210b34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + }, + { + "id": "1", + "text": "Capital Call #20 for Berkshire Multifamily.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "loggingOptOut": true + }, + "taskName": "RecognizeCustomEntitiesWithDisabledServiceLogs" + }, + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + }, + "taskName": "RecognizeCustomEntities" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "f596ebae-9838-4d3d-8e14-0bbaaf8fcb25", + "Date": "Mon, 25 Oct 2021 23:44:21 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d4aa6beb-d160-4754-a87b-8acf54c52edc", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "471" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d4aa6beb-d160-4754-a87b-8acf54c52edc", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0f29f833bbc61044dfbe237d258d7551", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "00531fe8-3502-4b52-aadd-2eec3e868a53", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "jobId": "d4aa6beb-d160-4754-a87b-8acf54c52edc", + "lastUpdateDateTime": "2021-10-25T23:44:21Z", + "createdDateTime": "2021-10-25T23:44:21Z", + "expirationDateTime": "2021-10-26T23:44:21Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/d4aa6beb-d160-4754-a87b-8acf54c52edc", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d52524e221c1fa02adf4517f9cdbaa1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "290759dd-1736-4bae-a8e1-10ff33756eec", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "101" + }, + "ResponseBody": { + "jobId": "d4aa6beb-d160-4754-a87b-8acf54c52edc", + "lastUpdateDateTime": "2021-10-25T23:44:21Z", + "createdDateTime": "2021-10-25T23:44:21Z", + "expirationDateTime": "2021-10-26T23:44:21Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:21.9387332Z", + "taskName": "RecognizeCustomEntitiesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "Berkshire Multifamily", + "category": "location_name", + "offset": 21, + "length": 21, + "confidenceScore": 0.46 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + }, + { + "lastUpdateDateTime": "2021-10-25T23:44:21.9883548Z", + "taskName": "RecognizeCustomEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "Berkshire Multifamily", + "category": "location_name", + "offset": 21, + "length": 21, + "confidenceScore": 0.46 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "718786967", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithMultipleActionsAsync.json new file mode 100644 index 000000000000..37c3ce4fd2c6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeCustomEntitiesTests/RecognizeCustomEntitiesWithMultipleActionsAsync.json @@ -0,0 +1,291 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "656", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-5a527dd3db2cce42a9bd2e02a0fade18-621a925676a7494a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "51a9ddef8cc9376c5ef234453d6d2e36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A recent report by the Government Accountability Office found a dramatic increase in oil.", + "language": "en" + }, + { + "id": "1", + "text": "Capital Call #20 for Berkshire Multifamily.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "loggingOptOut": true + }, + "taskName": "RecognizeCustomEntitiesWithDisabledServiceLogs" + }, + { + "parameters": { + "project-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deployment-name": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + }, + "taskName": "RecognizeCustomEntities" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "346af67b-89a3-4d11-b350-fe5c8e23799f", + "Date": "Mon, 25 Oct 2021 23:44:32 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/35295539-806f-4152-8663-058b6c5c308d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "283" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/35295539-806f-4152-8663-058b6c5c308d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "28b605fdaa41e7f7c65dc469206cdb0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42bd1df5-bd1a-4599-956f-1d737562399f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "35295539-806f-4152-8663-058b6c5c308d", + "lastUpdateDateTime": "2021-10-25T23:44:32Z", + "createdDateTime": "2021-10-25T23:44:32Z", + "expirationDateTime": "2021-10-26T23:44:32Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/35295539-806f-4152-8663-058b6c5c308d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f540c9e3448fabf732e712f376f901fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4bde3efc-cde9-4b66-aef8-34a7c3015848", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:34 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": "35295539-806f-4152-8663-058b6c5c308d", + "lastUpdateDateTime": "2021-10-25T23:44:33Z", + "createdDateTime": "2021-10-25T23:44:32Z", + "expirationDateTime": "2021-10-26T23:44:32Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:33.3722219Z", + "taskName": "RecognizeCustomEntitiesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "Berkshire Multifamily", + "category": "location_name", + "offset": 21, + "length": 21, + "confidenceScore": 0.46 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + }, + { + "lastUpdateDateTime": "2021-10-25T23:44:33.4363479Z", + "taskName": "RecognizeCustomEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "recent", + "category": "object_select", + "offset": 2, + "length": 6, + "confidenceScore": 0.08 + }, + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "Accountability", + "category": "geographic_poi", + "offset": 34, + "length": 14, + "confidenceScore": 0.07 + }, + { + "text": "dramatic", + "category": "sort", + "offset": 64, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "music_item", + "offset": 85, + "length": 3, + "confidenceScore": 0.06 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "Berkshire Multifamily", + "category": "location_name", + "offset": 21, + "length": 21, + "confidenceScore": 0.46 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "deploymentName": "88ee0f78-fbca-444d-98e2-7c4c8631e494" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "950362413", + "TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME": "88ee0f78-fbca-444d-98e2-7c4c8631e494", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index bdd148038441..8ec98d049f16 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f8601763ef5edd45b8faa2ca1dc725d8-7216dfde512c9a4c-00", + "traceparent": "00-13eb5d59d39e824fa70f1df60312a093-ed5934250937734c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "73b99494ac5a2b6a48730fa6d4bda24b", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1490e146-d5f7-4ca9-bea2-197d01a3cfbb", + "apim-request-id": "7a000609-d695-46c5-9849-3b43bd5e12e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:49 GMT", + "Date": "Mon, 25 Oct 2021 21:20:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "documents": [ @@ -95,6 +95,6 @@ "Variables": { "RandomSeed": "1057805335", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json index d2b8d3f0068a..cd4693bde9ef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6b2016b119115f4ab67bd827b009e4f6-3e3a1e3ee0989c43-00", + "traceparent": "00-817288a2cfae764f87458775c8b2f708-95078964f92b6546-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d2ffe8a9cd41c6a7f7eddf3ba0def75e", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c2fc806-572a-4f17-a21f-53cca2811e1b", + "apim-request-id": "088ebe54-732a-4a65-8af5-503fc40327b7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:53 GMT", + "Date": "Mon, 25 Oct 2021 21:20:26 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": "17" }, "ResponseBody": { "documents": [ @@ -95,6 +95,6 @@ "Variables": { "RandomSeed": "581345388", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json index 2267960e7370..5fb3cf24a223 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-69d4fb0312f6d34dac5f5b6067c77418-7a9480f5ff2abe45-00", + "traceparent": "00-78c0d1e196d90245812807018fe52f6d-56621bec7592c249-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "67616e684f8b043d1e0c71e939770f42", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7f7d307-7313-4c95-8def-5acfde98a561", + "apim-request-id": "562252a2-6ae0-430c-a065-74e2a0d3c361", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:49 GMT", + "Date": "Mon, 25 Oct 2021 21:20:07 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": "17" }, "ResponseBody": { "statistics": { @@ -109,6 +109,6 @@ "Variables": { "RandomSeed": "706252555", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json index 7fc6060b35f4..db5f39c96d3d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-386172e948a3b94b907f13187ea09cf6-e1523a112995aa44-00", + "traceparent": "00-a1a0312056cd134cb0b91b7f38723e70-f280029c6d19b244-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "3d6191fdfe339ad3e9a9a23dfab389e2", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d76da010-536d-44af-99e6-e17cca58909c", + "apim-request-id": "069302b5-77cb-4c0e-b5d1-7165382e1d08", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:53 GMT", + "Date": "Mon, 25 Oct 2021 21:20:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "statistics": { @@ -109,6 +109,6 @@ "Variables": { "RandomSeed": "915085791", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json index a9026d3ed98b..e970ce93c732 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9b38a911e7ebd94ca3d0e6b7cf86c571-9ceac004c275514b-00", + "traceparent": "00-1888ffe7b74a2844a266f953be218e9f-8e2ea67dcb9d144e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "c2e6195c0f4c89c31e4ed8101a9fceeb", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8210f72b-d385-4c9b-83e6-3db5434be2d0", + "apim-request-id": "88fc3e90-26e1-4cf3-862a-100a9694f63c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:49 GMT", + "Date": "Mon, 25 Oct 2021 21:20:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -109,6 +109,6 @@ "Variables": { "RandomSeed": "1116565065", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json index e38ea303146b..5bff781355bd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-301293ae346bcc4a8c2b1e6656a018dc-bd7fc607da0b6a45-00", + "traceparent": "00-3b5e0698bc84fa489a947f3eb3e319ca-0c8ab02a88379746-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "74826ca03adf5e0230955bc11a73f253", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "962fe54d-bfd6-4ec0-a9e3-41096ad2f17a", + "apim-request-id": "69c685da-e0a8-4552-85a2-4a85dd232567", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:53 GMT", + "Date": "Mon, 25 Oct 2021 21:20:27 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": "17" }, "ResponseBody": { "documents": [ @@ -109,6 +109,6 @@ "Variables": { "RandomSeed": "1159498521", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json index 0d762a58427c..6742694b5925 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c4f13d5d013c4548a901bb6d7052d84d-4f0cec1678594041-00", + "traceparent": "00-3853d7efa70e3d4ca99b16b99cd0b646-b5deb16b5ba21248-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "e1ab51bf64c496574b45aba2614e8e70", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9b82c11-b8bc-4fd1-bb5c-aa6bc87d71dd", + "apim-request-id": "fa459163-eedb-422f-8106-6fa8d9c1a8ab", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:50 GMT", + "Date": "Mon, 25 Oct 2021 21:20:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ @@ -112,6 +112,6 @@ "Variables": { "RandomSeed": "756961484", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json index ca5ff994dde6..8b8c2886ac8b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fe52bd0afeab4a4a830d408b6aa22f20-c063fb1c1e9d0348-00", + "traceparent": "00-0d936c9e7bbc54488e14e0c875d5510f-49fdc3e873f7c94a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d8b08f95484a0406f97f2f7420372c35", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bd1da593-5036-4072-bbe8-41d743536a98", + "apim-request-id": "757c6ab9-3405-4946-af23-22889578fce2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:53 GMT", + "Date": "Mon, 25 Oct 2021 21:20:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ @@ -112,6 +112,6 @@ "Variables": { "RandomSeed": "2014309095", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json index def52d22733c..0c0dfb6e9acd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b4abd2b777453144b17ea3cab63f30f4-e32ce7703b42e641-00", + "traceparent": "00-46571f5a5796f7499638d8241e4ce705-4c8ed00152230143-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "a8ae17c802a6c3ea068b7f13c73b934a", "x-ms-return-client-request-id": "true" @@ -55,9 +55,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "47193eff-c9cc-4f50-b9b5-00bf887f44f3", + "apim-request-id": "30c811d8-1dc2-4357-977b-1aee6c4cc9a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:50 GMT", + "Date": "Mon, 25 Oct 2021 21:20:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "1535542289", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index a84d244139f5..2fe32a88f923 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4cc66ee134b6724b85c78c53faf048a8-8e2522cc0b0e3a40-00", + "traceparent": "00-40b27f3871a1994eabb8f0f27636b79e-21fb8523e8000041-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "28b544e5b9a5cf3535ddef0fb0fd1d43", "x-ms-return-client-request-id": "true" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ea6254d3-edab-450f-abbe-e8179fd0463e", + "apim-request-id": "08fcf927-72bc-4e6f-ac11-370696dd64b8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:53 GMT", + "Date": "Mon, 25 Oct 2021 21:20:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "467834574", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index 9bef666f37ed..78e75e939b18 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1299928fae4d084da25ebf9aebedfd3a-2936b2f2b3613b4d-00", + "traceparent": "00-3418bf9deec4034384c1464aed971228-e6427f9dd1810146-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "0394cc79836b8e2a0617730333d293ff", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "d7a70f63-1436-42fa-a0cb-9fb4d047626d", + "apim-request-id": "62f06032-8bde-4d2b-ad2e-9d2a69adfbef", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:50 GMT", + "Date": "Mon, 25 Oct 2021 21:20:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "449438732", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index 445a3b54ea26..229a08654671 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ef109c2e7fa2ae4aaedb9c7213949b0b-82bd6b869936d842-00", + "traceparent": "00-1a4a4d89c2576e45bb44415ed28dfeb5-ecc5f7b183ce0049-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d2a606a042fa292271e9e0fd82e50d07", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "8beefd94-d484-4a38-bf7c-cccf0ece15c5", + "apim-request-id": "83298568-446d-44fe-b53b-f8997891c98a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:53 GMT", + "Date": "Mon, 25 Oct 2021 21:20:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "269930919", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index bb724b172d3e..5518d56bb3aa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d222c7219fcc6a40ba784e4d1a5b36ea-e0e97b0506b7ae4c-00", + "traceparent": "00-8a11873640d76643bf376c446cbb548a-87915285a7929e49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "143a14bc880cd41cfe9c98287e990fb6", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46f12e61-e146-49da-a764-0d17a3ac57a3", + "apim-request-id": "34546329-df99-4733-82e4-52b42abd3565", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:50 GMT", + "Date": "Mon, 25 Oct 2021 21:20:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1966020734", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json index 769bfa0852bf..f774c47df7c6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f07b3c7b89581046b36d1b87cc0777f7-617784224b930343-00", + "traceparent": "00-8b8befd0369aaa439abf479b1f69ed13-a50858fe57edfb47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "7afea088ca0a22de1ccfe4f56367e3ca", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "365ee77d-e879-4e2f-b7c5-f31e9144433d", + "apim-request-id": "837b6c7e-06f0-4f00-85c4-f59277c77aa0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:53 GMT", + "Date": "Mon, 25 Oct 2021 21:20:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "794759441", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json index 88c7dbcf921e..7b0d24dc3536 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5ee0aade8d9e4c4a97cc1dc5efc50af2-f2c70931ee60404d-00", + "traceparent": "00-dd6886c5d5987a44993405b81b643ae6-27a9a67ec5cdbd4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "3c7b09ea57a0a9f84c938c05ff06e377", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb3eb469-5644-483e-9eff-08646f8c6ef3", + "apim-request-id": "8b3f66ac-4e93-4801-a8ee-f72f8691d662", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:50 GMT", + "Date": "Mon, 25 Oct 2021 21:20:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "statistics": { @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "541291504", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json index 022a55f7fd1e..53bc80bcd70c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-524c0910dcc81549a869924127780624-08999bf5c186be49-00", + "traceparent": "00-02743bd40b7e744f9b9003d66b924f97-7e1b74909e84dd40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "c386dc48f454868243af3522ce69cb86", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "696d6e27-9648-4eee-a5ae-8bb2ca32f0c9", + "apim-request-id": "c7878d48-a67e-438d-9670-d2816bfbd0c1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:54 GMT", + "Date": "Mon, 25 Oct 2021 21:20:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "statistics": { @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "438437791", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json index 2eec1e0df055..31a2fa363201 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7a70efb7d116894092f303669384d27c-af4a31114272bb4a-00", + "traceparent": "00-90c07af61ab7a14c8261ea382b6c01e7-4b6b621e29737e44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "483a789eb74f49281b818c10882907cc", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ab3e6d1-e686-4f4c-b702-f5f699378634", + "apim-request-id": "03f771ff-692b-4bb2-af6c-b8fc6d3bb5e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:50 GMT", + "Date": "Mon, 25 Oct 2021 21:20:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ @@ -77,6 +77,6 @@ "Variables": { "RandomSeed": "958901847", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index 9029d641e4aa..57a93bef39ba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-356ad39648178948b5d25aadb64a5826-53daa3e3b5332a49-00", + "traceparent": "00-e16b9444c473be4db64d9d8996590fd7-a04593626290ef4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "700659f3fdefe683be90e2b1951eb421", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6c6ea8c-d94e-4ccd-861f-9457dad4130a", + "apim-request-id": "fda7a731-c38a-42f4-833e-0e2cb58136f3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:54 GMT", + "Date": "Mon, 25 Oct 2021 21:20:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ @@ -77,6 +77,6 @@ "Variables": { "RandomSeed": "988548785", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTest.json index f39d9675e769..f965057e3a3f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-9a4d29297042d547bcb176a4b3841b5d-82629c01ce00614c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-1a977dfacd351f4fac10fbf7ad38dead-e613efe454a66b45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d22fd110eebc5d37b5bf26dc7ce47dd3", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b6cad7c-e031-4736-ac3e-5c13f329fa97", + "apim-request-id": "d82910a1-c596-429a-8dc4-e881f2b12641", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:52 GMT", + "Date": "Mon, 25 Oct 2021 23:04:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "documents": [ @@ -76,6 +70,6 @@ ], "Variables": { "RandomSeed": "124097931", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTestAsync.json index 7a0e0436af1f..9de7f02ab584 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithAADTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-2b91432e1437814bbcdbd6381150346e-21d4e6110eae7d4a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-13fc830e1192db4c9f6cb366aee1bcda-4156d505b99ca640-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea644f0685369a42da05c1cab15ed4b8", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac0a5cbd-0a3d-4b26-b9f7-5d5881c52dd6", + "apim-request-id": "1bc83f43-a74e-4457-b1b3-5b9d9824ada0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:54 GMT", + "Date": "Mon, 25 Oct 2021 23:04:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ @@ -76,6 +70,6 @@ ], "Variables": { "RandomSeed": "318628731", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index 6f56b73abe98..b513c9a7f738 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f83eb9755e37104b9aa3c6edbfb0dd2c-2d810a4f143e584e-00", + "traceparent": "00-7c04095fc98de34dbe9cf14a00bb3ff4-7525a27da79f7843-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "fb4827053b6a1252c3b25be970bef0ff", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6086968b-acb3-4c68-a1c9-3d23935f33a2", + "apim-request-id": "0244920e-fad1-402b-8b32-028e7ef5f7fb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:52 GMT", + "Date": "Mon, 25 Oct 2021 21:20:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ @@ -77,6 +77,6 @@ "Variables": { "RandomSeed": "1194835107", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json index 18b50d61e0a7..703b91d77d17 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-201585e0e4bb7f4fa300cd03ccb4e5a1-70f452eec9cc964b-00", + "traceparent": "00-95b60cef6448a74ab1790a06ab15db35-8dd2a4b4fc28ac49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "b55082b33b1fe734efdcbb82c7c8a31b", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cff9fc1a-54f9-4b29-aaf9-25cb002438bd", + "apim-request-id": "ecdf5713-99f5-47fa-9639-d287a44ab1a6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:54 GMT", + "Date": "Mon, 25 Oct 2021 21:20:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -77,6 +77,6 @@ "Variables": { "RandomSeed": "852244609", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithMultipleActions.json new file mode 100644 index 000000000000..df96d2fe22c6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithMultipleActions.json @@ -0,0 +1,1094 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "453", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-705bad755673a54a80781877324514e4-347a97e50d82a84f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0923d0adeca73288c4a850a185762c69", + "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": "Microsoft fue fundado por Bill Gates y Paul Allen.", + "language": "es" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizeEntitiesWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizeEntities" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "088c05da-dede-400e-bdf9-2e9609eb9390", + "Date": "Mon, 25 Oct 2021 21:20:10 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "220" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a39d7db401e5f5d2b7fe561c97b3d4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f54eb3d5-2ac7-4c09-9e8e-afa21c29c2e9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20: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": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:11Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad0eb5a68dc8ba01fae0c55b4729c61e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f7b38da-f9c2-4073-9fde-d668e2c2b2eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20: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": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:11Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "faeed62b27d36daa73c4de2707266948", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a741b53c-c8e6-4d11-aef3-0d54d1d28684", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:13 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": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:12Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:12.5744457Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cffa016b7f674ea1d67e403e7b011801", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f1febc88-c24d-4ede-bff5-2132f4dc93f6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "85" + }, + "ResponseBody": { + "jobId": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:12Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:12.5744457Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f236c6b9438d7f7b0aa13a03aed9b3d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "17a973a4-7ff2-46f9-a0e8-fdab570cec83", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2471" + }, + "ResponseBody": { + "jobId": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:12Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:12.5744457Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45f07c76f62facb7359f2454e76cf271", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4bc45329-491f-401c-8de7-edf1960c9c33", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "jobId": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:17Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:12.5744457Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "406edcac77ef28bb867bc4c6459d9ffc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f3091a0e-56f7-4e08-b832-51dee0708407", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:21 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": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:17Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:12.5744457Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fec76ccad211c3d20f8abded1e26989e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4b70ad1f-9c3b-4dc5-9712-f57128002c1e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "jobId": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:17Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:12.5744457Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d257c8af736bffe4c0c8beb331f16798", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bae50830-5e23-4c4c-8257-a9dd43a9efed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" + }, + "ResponseBody": { + "jobId": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:17Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:12.5744457Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/c8736c74-b175-4952-a3fc-847ffaf83da3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a8a2700f3a4d95f0aaa3165b9ce0960", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d7f3ff5-a2d9-4247-aa98-50129ee42fde", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "865" + }, + "ResponseBody": { + "jobId": "c8736c74-b175-4952-a3fc-847ffaf83da3", + "lastUpdateDateTime": "2021-10-25T21:20:25Z", + "createdDateTime": "2021-10-25T21:20:10Z", + "expirationDateTime": "2021-10-26T21:20:10Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:25.547045Z", + "taskName": "RecognizeEntitiesWithDisabledServiceLogs", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:20:12.5744457Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "316125392", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithMultipleActionsAsync.json new file mode 100644 index 000000000000..aec6cdd80a5c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithMultipleActionsAsync.json @@ -0,0 +1,834 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "453", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-7e712fd5357e72448110bb102f2f0dbc-6c60f63c888c0041-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c320a9b8f291b2f412bdd52e0e2139a", + "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": "Microsoft fue fundado por Bill Gates y Paul Allen.", + "language": "es" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizeEntitiesWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizeEntities" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "59584bff-1c5e-48e7-bd64-16a91141dc12", + "Date": "Mon, 25 Oct 2021 21:20:30 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "215" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "483e5a9af59e2f2a108bee82bc3a28ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9a6a81b5-5d6a-4143-a8fc-f1b1ff0b365d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20: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": "54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "lastUpdateDateTime": "2021-10-25T21:20:31Z", + "createdDateTime": "2021-10-25T21:20:31Z", + "expirationDateTime": "2021-10-26T21:20:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "180f57150c5f727293308582edacfcc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "76dfabe9-c7b7-4e06-a54f-3768bba15e6b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "867" + }, + "ResponseBody": { + "jobId": "54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "lastUpdateDateTime": "2021-10-25T21:20:32Z", + "createdDateTime": "2021-10-25T21:20:31Z", + "expirationDateTime": "2021-10-26T21:20:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:32.7547042Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "591a9b09d482a699e0038b9da1ad5f06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "48a22020-ed2a-4077-810c-ed14583c57f1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" + }, + "ResponseBody": { + "jobId": "54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "lastUpdateDateTime": "2021-10-25T21:20:32Z", + "createdDateTime": "2021-10-25T21:20:31Z", + "expirationDateTime": "2021-10-26T21:20:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:32.7547042Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "893c3002fbd38e3ae8cbb46d6fa84164", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2bb3e140-4a4e-4902-bffe-43951a4e46ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1305" + }, + "ResponseBody": { + "jobId": "54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "lastUpdateDateTime": "2021-10-25T21:20:32Z", + "createdDateTime": "2021-10-25T21:20:31Z", + "expirationDateTime": "2021-10-26T21:20:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:32.7547042Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21792c8ece20412abd68385c80d4d1e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a655f25-f619-4b58-9c35-3fd173535009", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "lastUpdateDateTime": "2021-10-25T21:20:37Z", + "createdDateTime": "2021-10-25T21:20:31Z", + "expirationDateTime": "2021-10-26T21:20:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:32.7547042Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc7f7fd1736f0dee608c71b61f2c3737", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f125e470-1f14-48cd-bbd2-b3b2cfc4e135", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1303" + }, + "ResponseBody": { + "jobId": "54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "lastUpdateDateTime": "2021-10-25T21:20:37Z", + "createdDateTime": "2021-10-25T21:20:31Z", + "expirationDateTime": "2021-10-26T21:20:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:32.7547042Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "740e27c13d3434e606fbcb6ac3de0d13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7db1d174-437d-4edb-beae-07d83722ed72", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:20:42 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": "54f71f9b-d8a6-4d76-92b7-af8ca3d9f3a4", + "lastUpdateDateTime": "2021-10-25T21:20:42Z", + "createdDateTime": "2021-10-25T21:20:31Z", + "expirationDateTime": "2021-10-26T21:20:31Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:20:42.8382863Z", + "taskName": "RecognizeEntitiesWithDisabledServiceLogs", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:20:32.7547042Z", + "taskName": "RecognizeEntities", + "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 26, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 39, + "length": 10, + "confidenceScore": 0.99 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1459416548", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json index e31ef10fb6eb..4bc4e6156c2e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?model-version=2020-04-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?model-version=2020-04-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aba22c074429264b8f3d82d8fbdf713b-3840da7758f2f44a-00", + "traceparent": "00-92639668362e9a40aebf7124ae24526c-492feaa06f2fab47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "c580665e455e125e80a821d61e9c3c18", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b8116be-0b62-4271-b336-06afdfda5da4", + "apim-request-id": "fd7523b9-cbe0-462d-a402-1dc353df91a5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:52 GMT", + "Date": "Mon, 25 Oct 2021 21:20:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "documents": [ @@ -79,6 +79,6 @@ "Variables": { "RandomSeed": "1531566714", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index 99a863a8c734..088e8036d27f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?model-version=2020-04-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?model-version=2020-04-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2c4bd9cd202ab44faf2513f393af95bf-3afa3a3dae2fb947-00", + "traceparent": "00-fa54e69907e3de4fb687558cf736d1cb-8ba53f727e414d48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "3b4b745166e69035ddd947884a09aa87", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b8a3226-44ed-4f50-b26e-1b550afe4334", + "apim-request-id": "074fab90-7176-4f96-90a0-1067e6bb06b1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:54 GMT", + "Date": "Mon, 25 Oct 2021 21:20:43 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": "101" }, "ResponseBody": { "documents": [ @@ -79,6 +79,6 @@ "Variables": { "RandomSeed": "1094081853", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/AnalyzeHealthcareEntitiesPagination.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/AnalyzeHealthcareEntitiesPagination.json index 52f079a695bc..c6d0e41c3dae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/AnalyzeHealthcareEntitiesPagination.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/AnalyzeHealthcareEntitiesPagination.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a0f58c29eddfe44792f98188f365e699-250fb1c13b998a42-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-e129e5de95ec8c41a4b9bfcd139ed77c-2f201cc7bc8cbe4b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "d518e71fb8bbde791a4a8e2d519abd2d", "x-ms-return-client-request-id": "true" }, @@ -29,762 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1f8aec29-1bf1-4024-93be-4d8749dc2cd8", - "Date": "Fri, 06 Aug 2021 01:52:53 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91", + "apim-request-id": "92f13a16-9b4a-4ebb-bb5a-48e932a1e527", + "Date": "Mon, 25 Oct 2021 21:20:43 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/a4fb4bf3-3f26-4025-a4cb-09700375847e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "251" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "180" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/a4fb4bf3-3f26-4025-a4cb-09700375847e?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "15392559dddf00be7c02b37db1655d5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20715aa1-ef9f-45a7-b848-6f474d0ee077", + "apim-request-id": "1dab444d-f127-49c5-954e-3473e322de1b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:53 GMT", + "Date": "Mon, 25 Oct 2021 21:20:44 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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "8fbb3015ae7667cee796b09df47c3a1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2d0dedf6-1dba-482e-8ba1-1d00ee671229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "9ca689c8d08e41aa291759b905fb2cb5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6acc3714-c95d-4cc6-b2a0-8707003f1e56", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "20182fec2ddfaab657d22e482d200cff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9a632824-6e08-48e3-81c1-97482b118cdd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "28b599c8c1be45d08679665f551561eb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "17beeb46-1418-49e6-8e6f-9a0a7083796a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "c4b0fb6a19639a3ad3fb44bca1611408", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4ceecad9-07b4-4220-a5a8-a9e057e698e2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - }, - "ResponseBody": { - "jobId": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "6cf0590b03462bf65fd29a65c7575542", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b7eb4d5f-6c3d-4a63-973a-782b76b5b27c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:52: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "31dd4370476fae9b5e1a55c27d13a324", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7ac1d86e-7173-4baf-8170-f8e485a3b598", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "fb535e64f42466a4048565917fd4d37b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9f421e52-6ae9-4fba-99d4-08f587dd4afa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "5e4c01a5e384c398bd420e2bae33ae4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "da0a9603-cab5-4d3c-9199-2930d7763d74", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "6801762e5a037b1e9f772deae20a2f89", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "70905e4f-79da-40e6-8f4d-21873940b6fe", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:04 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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "7b1dd94745c781a0c58f3de1e678b8d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6a9ca381-5d23-47c7-970b-697bff5c5082", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - }, - "ResponseBody": { - "jobId": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:52:54Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "096219d66ad34b78e3d0be0db5aee1b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4c83f0e4-0a04-4aa5-bbf4-776df9dbd5a0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:06 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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "d4e485133316e984d57fa3741d3c9526", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f80ec77f-6da8-402b-980d-2e8b4ca32212", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "c8135cbe26a8ddb561d198f78692cb17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fa52a15f-d7f4-4bd8-adea-441359a6f852", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:08 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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "61ce8aade394a3b995793354c6032ea6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a7851e78-efd2-4bb7-9cb6-6b1da209b919", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "584e983a189aed0acf0673459a8c6242", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c54e3231-3504-433f-a7a8-0a068be544c3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "92c68cb3346eda92a370332ef261165d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1b55ce3d-0e6c-477a-be23-da346c41e2a8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "eebdf2a37344957c7fe0918d70740809", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "58e85f9d-ea67-417e-a8b7-c510cd1ed079", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "3aa1f0179b3d05370573b52ae5dbfa6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4ebe97bd-d6f0-4985-a2f2-9647e0b34b6f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "a8a115f073cf40fe1030138da205692e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e16ccc63-5394-495d-b6b6-017091f67bd5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", + "jobId": "a4fb4bf3-3f26-4025-a4cb-09700375847e", + "lastUpdateDateTime": "2021-10-25T21:20:43Z", + "createdDateTime": "2021-10-25T21:20:43Z", + "expirationDateTime": "2021-10-26T21:20:43Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/a4fb4bf3-3f26-4025-a4cb-09700375847e?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "02172a67dcc00820bab7e9d0bd51b0a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9cbd911d-62f7-4e6f-8e11-08b85c589d6d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:15 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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "5b9c23e65fd2a339f160290c87a962ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1ed27a9d-e06b-4f1a-b24e-0adc469bd898", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "bbc3870af8c413aef599ee17892d83be", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "23f5a263-3c5e-4e3a-b60c-93e248f0c1f9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:06Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/3bac927f-96c0-4b5e-a193-6136bb78ff91?showStats=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": "7fa770800e69075bf074105fb2138010", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fbb3015ae7667cee796b09df47c3a1a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "82772326-430c-482e-96aa-b8a2631959b7", + "apim-request-id": "93f0fbe0-f092-4c99-b123-518027924c4b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:18 GMT", + "Date": "Mon, 25 Oct 2021 21:20:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8156" }, "ResponseBody": { - "jobId": "3bac927f-96c0-4b5e-a193-6136bb78ff91", - "lastUpdateDateTime": "2021-08-06T01:53:19Z", - "createdDateTime": "2021-08-06T01:52:53Z", - "expirationDateTime": "2021-08-07T01:52:53Z", + "jobId": "a4fb4bf3-3f26-4025-a4cb-09700375847e", + "lastUpdateDateTime": "2021-10-25T21:20:44Z", + "createdDateTime": "2021-10-25T21:20:43Z", + "expirationDateTime": "2021-10-26T21:20:43Z", "status": "succeeded", "errors": [], "results": { @@ -1768,6 +1096,6 @@ "Variables": { "RandomSeed": "21962335", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/AnalyzeHealthcareEntitiesPaginationAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/AnalyzeHealthcareEntitiesPaginationAsync.json index aed014969974..97b770a7fea6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/AnalyzeHealthcareEntitiesPaginationAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/AnalyzeHealthcareEntitiesPaginationAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-06086050746fc041a9ca5422a1340e87-664f981ea3963f41-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-a0c491f734699743afc3fcb5fc4192aa-35fdadb19303314a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "fbbc5786a282c64df8d358b9cc278a4d", "x-ms-return-client-request-id": "true" }, @@ -29,132 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "089f3be6-a3f6-410e-aa28-c0983b57d919", - "Date": "Fri, 06 Aug 2021 01:54:08 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/ed796f95-889d-4ab4-83fd-63bfdb60466b", + "apim-request-id": "e3f547af-9156-4033-8e53-070fa2f4484f", + "Date": "Mon, 25 Oct 2021 21:21:19 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/6bd1f3cd-56ba-48db-b28f-fed137c0714b", "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": "220" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/ed796f95-889d-4ab4-83fd-63bfdb60466b?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/6bd1f3cd-56ba-48db-b28f-fed137c0714b?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "bbeac74cd30307fda0d67684218a1c72", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e61152f1-a83b-4599-8025-91b3c56dc4c7", + "apim-request-id": "0335499b-8554-4a89-b648-39218587cb57", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:08 GMT", + "Date": "Mon, 25 Oct 2021 21:21:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "ed796f95-889d-4ab4-83fd-63bfdb60466b", - "lastUpdateDateTime": "2021-08-06T01:54:08Z", - "createdDateTime": "2021-08-06T01:54:08Z", - "expirationDateTime": "2021-08-07T01:54:08Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/ed796f95-889d-4ab4-83fd-63bfdb60466b?showStats=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": "2c9581455d02f093db0efd8af829c0c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7c8b22cd-a7fa-4da5-a344-4910644a48a1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54: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": "ed796f95-889d-4ab4-83fd-63bfdb60466b", - "lastUpdateDateTime": "2021-08-06T01:54:08Z", - "createdDateTime": "2021-08-06T01:54:08Z", - "expirationDateTime": "2021-08-07T01:54:08Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/ed796f95-889d-4ab4-83fd-63bfdb60466b?showStats=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": "7b312057b61ab3835ab45aac2bc8a56e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6a7d49d0-2fed-4ab2-b226-ac89f9a39b5a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:10 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": "ed796f95-889d-4ab4-83fd-63bfdb60466b", - "lastUpdateDateTime": "2021-08-06T01:54:10Z", - "createdDateTime": "2021-08-06T01:54:08Z", - "expirationDateTime": "2021-08-07T01:54:08Z", + "jobId": "6bd1f3cd-56ba-48db-b28f-fed137c0714b", + "lastUpdateDateTime": "2021-10-25T21:21:20Z", + "createdDateTime": "2021-10-25T21:21:19Z", + "expirationDateTime": "2021-10-26T21:21:19Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/ed796f95-889d-4ab4-83fd-63bfdb60466b?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/6bd1f3cd-56ba-48db-b28f-fed137c0714b?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4a74e5b65d91ee4b33f9dff4d6730f76", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c9581455d02f093db0efd8af829c0c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9aeada2a-8e23-4fe0-a79f-e816e27ebd77", + "apim-request-id": "11f45b1a-612a-4af1-b36e-6f3f19addc32", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:11 GMT", + "Date": "Mon, 25 Oct 2021 21:21:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { - "jobId": "ed796f95-889d-4ab4-83fd-63bfdb60466b", - "lastUpdateDateTime": "2021-08-06T01:54:11Z", - "createdDateTime": "2021-08-06T01:54:08Z", - "expirationDateTime": "2021-08-07T01:54:08Z", + "jobId": "6bd1f3cd-56ba-48db-b28f-fed137c0714b", + "lastUpdateDateTime": "2021-10-25T21:21:20Z", + "createdDateTime": "2021-10-25T21:21:19Z", + "expirationDateTime": "2021-10-26T21:21:19Z", "status": "succeeded", "errors": [], "results": { @@ -1138,6 +1096,6 @@ "Variables": { "RandomSeed": "1439010920", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json index 438860d12177..ad723d417449 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4625460f3856b04da3ed48bcf326ca93-44198cf74d96e844-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-3895b966acd5cb47b386549eb4e176f0-72c061ef1918ae4f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "1d7c0f7df9a5be46a7bf1d0b574c6095", "x-ms-return-client-request-id": "true" }, @@ -29,102 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d020d9e4-c7e9-4ded-a89c-7716e9779e8a", - "Date": "Fri, 06 Aug 2021 01:53:19 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/445e78c0-aa96-45ef-b165-d613e220d5f1", + "apim-request-id": "ce456f8b-a04b-4f34-9846-43ba3bcd764f", + "Date": "Mon, 25 Oct 2021 21:20:53 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/074f5d2a-efeb-4c84-a9ae-1c2c592bc007", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "226" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "159" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/445e78c0-aa96-45ef-b165-d613e220d5f1?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/074f5d2a-efeb-4c84-a9ae-1c2c592bc007?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "9441bfd5d8fa13e75ab79017f0dbec22", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "660e6b04-f1ce-4407-a3f7-bf6078c29f37", + "apim-request-id": "c80a47ba-147b-4b3a-9332-051b146591d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:19 GMT", + "Date": "Mon, 25 Oct 2021 21:20:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { - "jobId": "445e78c0-aa96-45ef-b165-d613e220d5f1", - "lastUpdateDateTime": "2021-08-06T01:53:20Z", - "createdDateTime": "2021-08-06T01:53:19Z", - "expirationDateTime": "2021-08-07T01:53:19Z", - "status": "notStarted", + "jobId": "074f5d2a-efeb-4c84-a9ae-1c2c592bc007", + "lastUpdateDateTime": "2021-10-25T21:20:54Z", + "createdDateTime": "2021-10-25T21:20:54Z", + "expirationDateTime": "2021-10-26T21:20:54Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/445e78c0-aa96-45ef-b165-d613e220d5f1?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/074f5d2a-efeb-4c84-a9ae-1c2c592bc007?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "1f1476b4f8decd8416de12a15e37d599", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4e4ecb6f-77a6-43d9-b31a-797538e334b0", + "apim-request-id": "87e06de5-ce58-4c8c-a51c-ec86c44b5baa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:20 GMT", + "Date": "Mon, 25 Oct 2021 21:20:55 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": "82" }, "ResponseBody": { - "jobId": "445e78c0-aa96-45ef-b165-d613e220d5f1", - "lastUpdateDateTime": "2021-08-06T01:53:20Z", - "createdDateTime": "2021-08-06T01:53:19Z", - "expirationDateTime": "2021-08-07T01:53:19Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/445e78c0-aa96-45ef-b165-d613e220d5f1?showStats=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": "9fb8c34e36bba5c72869c2ed682ecdcc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "08e6c7c0-e689-4874-8ea1-b36af394f099", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:21 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": "445e78c0-aa96-45ef-b165-d613e220d5f1", - "lastUpdateDateTime": "2021-08-06T01:53:21Z", - "createdDateTime": "2021-08-06T01:53:19Z", - "expirationDateTime": "2021-08-07T01:53:19Z", + "jobId": "074f5d2a-efeb-4c84-a9ae-1c2c592bc007", + "lastUpdateDateTime": "2021-10-25T21:20:54Z", + "createdDateTime": "2021-10-25T21:20:54Z", + "expirationDateTime": "2021-10-26T21:20:54Z", "status": "succeeded", "errors": [], "results": { @@ -1108,6 +1096,6 @@ "Variables": { "RandomSeed": "1964733569", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json index e207cadfcd31..9fc07c77465a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1131c0312ead774487e31d6796161371-9121ea78284cdc46-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-485f0802502c1c459f86c3a84797b9cc-e40e50642b399a42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "99aaf08b1c844fb2d7a9025199ec97e4", "x-ms-return-client-request-id": "true" }, @@ -29,72 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ee31b467-c4b4-45a9-a145-4c927f7299fe", - "Date": "Fri, 06 Aug 2021 01:54:12 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/2bc6d8b7-dacd-4786-bbfa-8c11c1d9c1b7", + "apim-request-id": "ef2fbcda-65e6-4216-b235-f889a8c7fb30", + "Date": "Mon, 25 Oct 2021 21:21:22 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/ad3479f6-1f58-4aeb-82c2-d30c5e19a927", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "259" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "659" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/2bc6d8b7-dacd-4786-bbfa-8c11c1d9c1b7?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/ad3479f6-1f58-4aeb-82c2-d30c5e19a927?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "a6eb27012d3e0231e64179d6488bf525", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f65cb70d-102f-4af6-a59f-e4addc8f568b", + "apim-request-id": "52925c70-b4fb-4c85-ad4d-cc0da29ebda3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:12 GMT", + "Date": "Mon, 25 Oct 2021 21:21:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "2bc6d8b7-dacd-4786-bbfa-8c11c1d9c1b7", - "lastUpdateDateTime": "2021-08-06T01:54:12Z", - "createdDateTime": "2021-08-06T01:54:12Z", - "expirationDateTime": "2021-08-07T01:54:12Z", - "status": "notStarted", + "jobId": "ad3479f6-1f58-4aeb-82c2-d30c5e19a927", + "lastUpdateDateTime": "2021-10-25T21:21:23Z", + "createdDateTime": "2021-10-25T21:21:22Z", + "expirationDateTime": "2021-10-26T21:21:22Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/2bc6d8b7-dacd-4786-bbfa-8c11c1d9c1b7?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/ad3479f6-1f58-4aeb-82c2-d30c5e19a927?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "4d12280124119b66ed27d10225884cad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07b03c86-eb16-46ec-891b-6458cdcbd244", + "apim-request-id": "75480228-289f-4899-92aa-ec3b237899e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:13 GMT", + "Date": "Mon, 25 Oct 2021 21:21:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "122" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" }, "ResponseBody": { - "jobId": "2bc6d8b7-dacd-4786-bbfa-8c11c1d9c1b7", - "lastUpdateDateTime": "2021-08-06T01:54:13Z", - "createdDateTime": "2021-08-06T01:54:12Z", - "expirationDateTime": "2021-08-07T01:54:12Z", + "jobId": "ad3479f6-1f58-4aeb-82c2-d30c5e19a927", + "lastUpdateDateTime": "2021-10-25T21:21:23Z", + "createdDateTime": "2021-10-25T21:21:22Z", + "expirationDateTime": "2021-10-26T21:21:22Z", "status": "succeeded", "errors": [], "results": { @@ -1078,6 +1096,6 @@ "Variables": { "RandomSeed": "2027271043", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json index 52a002b5779f..b6d851568b37 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d52b98c94acbdc46bdbc32edef8e2411-f5786ec422cc1443-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-95e17dc4630df842bff7fa896bc8d5b7-10dfe0175ed02a4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "87697e405fe3a2c8182b48340c37e5c5", "x-ms-return-client-request-id": "true" }, @@ -29,432 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8309b203-866b-4cc0-9f1c-ee8084e8b25c", - "Date": "Fri, 06 Aug 2021 01:53:21 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f", + "apim-request-id": "cea709e2-f588-496c-828f-0338b9f63855", + "Date": "Mon, 25 Oct 2021 21:20:56 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/388833b9-e6ea-420f-ba16-517f43a1e8af", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "191" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "244" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/388833b9-e6ea-420f-ba16-517f43a1e8af?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "f1abd77b68195cb092c7f20f1aa7cc84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df38c7dd-ee70-472f-a257-9e4f7677f2b7", + "apim-request-id": "2c4d2821-8df1-47c4-aacb-f7e2249f299a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:21 GMT", + "Date": "Mon, 25 Oct 2021 21:20:56 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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "be37acebd508d7a1d3d78987b19e23cf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fc8a558a-bc9a-4092-9d62-2c5d084460b2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "b34190e23bc3d86ecd0cf51c6cb88870", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3a7af721-9afb-4f68-8b0b-57ba1880cf7a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "6048c45f2600a6bd35d41e41de29aaf3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d2893fd9-a09e-40f4-917d-9e5c358982cf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "892d23a31966b0c03e5ff0fbdf856a1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7e834f11-bbe8-4e6c-b42c-24b49d5db903", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "ed28194fc355bbcfd39b7def1d2cf9a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "05fc9786-af21-4bbc-88c8-18443c474a38", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "49780162fe8b460a049822a036c1c6b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7493583f-10ab-433f-9ec5-49b5304c9c7f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "c5f10369bc01e09e5371b6ca9bd09211", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "852c098e-9f31-4c30-9dd0-3efdf702699d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "de994b65200d518f0ee1e9bca12e8512", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9355c9f1-9eec-4c28-9a68-05686c5ef5a9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" - }, - "ResponseBody": { - "jobId": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "1a86cdd5333ba5a36297f61a473faa33", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "97cd6474-20f7-4cff-8ca4-67939c375398", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:22Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "ea3a1106e72849a274a0b71fd3e23e25", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b8636cd8-53e6-414f-abaa-3985a73c31bf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:33Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "cef5a4ec784a32d5a8f37b752a7509ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c0682f49-57b8-48b7-a0f4-b588ab4e2cac", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:33Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?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": "90b6b5379af3edea2a3da69b7b84d280", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3f3a8b25-375b-4347-8a6a-c28ec9f0a2f9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:33Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", + "jobId": "388833b9-e6ea-420f-ba16-517f43a1e8af", + "lastUpdateDateTime": "2021-10-25T21:20:56Z", + "createdDateTime": "2021-10-25T21:20:56Z", + "expirationDateTime": "2021-10-26T21:20:56Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/0955449a-713e-4290-ad66-540f5ab70f9f?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/388833b9-e6ea-420f-ba16-517f43a1e8af?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a32dd058dc4a8de93b0842346c2d1eff", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be37acebd508d7a1d3d78987b19e23cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b0bd7a69-4a0d-49f2-a802-652325fdbaa8", + "apim-request-id": "1814fa8f-7cf6-48d6-90e2-d5d9eb3cce12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:36 GMT", + "Date": "Mon, 25 Oct 2021 21:20:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "78" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "278" }, "ResponseBody": { - "jobId": "0955449a-713e-4290-ad66-540f5ab70f9f", - "lastUpdateDateTime": "2021-08-06T01:53:36Z", - "createdDateTime": "2021-08-06T01:53:22Z", - "expirationDateTime": "2021-08-07T01:53:22Z", + "jobId": "388833b9-e6ea-420f-ba16-517f43a1e8af", + "lastUpdateDateTime": "2021-10-25T21:20:57Z", + "createdDateTime": "2021-10-25T21:20:56Z", + "expirationDateTime": "2021-10-26T21:20:56Z", "status": "succeeded", "errors": [], "results": { @@ -1452,6 +1110,6 @@ "Variables": { "RandomSeed": "609735027", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json index a1ade87e17be..e46bf40c9d66 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c1c633b82a1717499a8e1bc7f6528f98-8a39502de355434f-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-78e4cd8b5feb7a4cb702b4422be7799f-be5084f931933e4c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "da8d96a331a03c42a6c41c2d9f512b98", "x-ms-return-client-request-id": "true" }, @@ -29,132 +35,228 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "be12be1b-40b7-4dbe-b283-23d2ff7053a4", - "Date": "Fri, 06 Aug 2021 01:54:13 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/b11f026f-6a74-4e52-916d-e680bb0dae9a", + "apim-request-id": "17053138-4b4f-4169-9b7c-53c1c9ba63c9", + "Date": "Mon, 25 Oct 2021 21:21:25 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/8e922ba3-dbee-4a21-873d-99d0cc537848", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "188" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "179" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/b11f026f-6a74-4e52-916d-e680bb0dae9a?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/8e922ba3-dbee-4a21-873d-99d0cc537848?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "a36dbbc9f92b427287ffda298bd01507", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ef7e59b-0ff7-45c2-930e-2a85f063ff21", + "apim-request-id": "879fdd26-3440-46e9-bcac-b12567ed1fe7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:13 GMT", + "Date": "Mon, 25 Oct 2021 21:21:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "b11f026f-6a74-4e52-916d-e680bb0dae9a", - "lastUpdateDateTime": "2021-08-06T01:54:13Z", - "createdDateTime": "2021-08-06T01:54:13Z", - "expirationDateTime": "2021-08-07T01:54:13Z", + "jobId": "8e922ba3-dbee-4a21-873d-99d0cc537848", + "lastUpdateDateTime": "2021-10-25T21:21:25Z", + "createdDateTime": "2021-10-25T21:21:24Z", + "expirationDateTime": "2021-10-26T21:21:24Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/b11f026f-6a74-4e52-916d-e680bb0dae9a?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/8e922ba3-dbee-4a21-873d-99d0cc537848?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "86c4abbaba50d8ace0d0fc3795e01d2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3aaf9a42-a2ad-40f8-9689-78485be9f1f6", + "apim-request-id": "cc5e3c30-6f6b-4f54-96b2-1eb144a7b9e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:14 GMT", + "Date": "Mon, 25 Oct 2021 21:21: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": "b11f026f-6a74-4e52-916d-e680bb0dae9a", - "lastUpdateDateTime": "2021-08-06T01:54:13Z", - "createdDateTime": "2021-08-06T01:54:13Z", - "expirationDateTime": "2021-08-07T01:54:13Z", + "jobId": "8e922ba3-dbee-4a21-873d-99d0cc537848", + "lastUpdateDateTime": "2021-10-25T21:21:25Z", + "createdDateTime": "2021-10-25T21:21:24Z", + "expirationDateTime": "2021-10-26T21:21:24Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/b11f026f-6a74-4e52-916d-e680bb0dae9a?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/8e922ba3-dbee-4a21-873d-99d0cc537848?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "97afe1fd518fa965244a53a05719b0d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91d7cfff-5c29-4df8-8e47-a43da7fe2f6c", + "apim-request-id": "88ca2ad2-3e88-4e6a-9282-7316dc343e65", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:15 GMT", + "Date": "Mon, 25 Oct 2021 21:21:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "b11f026f-6a74-4e52-916d-e680bb0dae9a", - "lastUpdateDateTime": "2021-08-06T01:54:15Z", - "createdDateTime": "2021-08-06T01:54:13Z", - "expirationDateTime": "2021-08-07T01:54:13Z", - "status": "running", + "jobId": "8e922ba3-dbee-4a21-873d-99d0cc537848", + "lastUpdateDateTime": "2021-10-25T21:21:25Z", + "createdDateTime": "2021-10-25T21:21:24Z", + "expirationDateTime": "2021-10-26T21:21:24Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/b11f026f-6a74-4e52-916d-e680bb0dae9a?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/8e922ba3-dbee-4a21-873d-99d0cc537848?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "f47314aea48d0f480e95c35afd3bada6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ecad601-794a-428a-bcc2-8f6414e3fe7a", + "apim-request-id": "c8a8ef91-0916-4d73-b94d-5b3e98a90310", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21:29 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": "8e922ba3-dbee-4a21-873d-99d0cc537848", + "lastUpdateDateTime": "2021-10-25T21:21:25Z", + "createdDateTime": "2021-10-25T21:21:24Z", + "expirationDateTime": "2021-10-26T21:21:24Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/8e922ba3-dbee-4a21-873d-99d0cc537848?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a92baee17e216978451a6205660b80c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d5d923e3-4cca-4329-98b1-54e98c2f1f58", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21:30 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": "8e922ba3-dbee-4a21-873d-99d0cc537848", + "lastUpdateDateTime": "2021-10-25T21:21:30Z", + "createdDateTime": "2021-10-25T21:21:24Z", + "expirationDateTime": "2021-10-26T21:21:24Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/8e922ba3-dbee-4a21-873d-99d0cc537848?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.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8088261f296d589f999f88f98d0bace8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2137d157-5369-4440-9d19-69f72fad4700", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:16 GMT", + "Date": "Mon, 25 Oct 2021 21:21:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "69" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { - "jobId": "b11f026f-6a74-4e52-916d-e680bb0dae9a", - "lastUpdateDateTime": "2021-08-06T01:54:16Z", - "createdDateTime": "2021-08-06T01:54:13Z", - "expirationDateTime": "2021-08-07T01:54:13Z", + "jobId": "8e922ba3-dbee-4a21-873d-99d0cc537848", + "lastUpdateDateTime": "2021-10-25T21:21:30Z", + "createdDateTime": "2021-10-25T21:21:24Z", + "expirationDateTime": "2021-10-26T21:21:24Z", "status": "succeeded", "errors": [], "results": { @@ -1152,6 +1254,6 @@ "Variables": { "RandomSeed": "377463297", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json index 45d2861fac56..b34061bee697 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d19f9b4d90092e4bbd87e48610c6e5bd-ad0697c9466bd846-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-e2e5925fc5e8f240908b778a36eff7d9-0f1c6a21c2b48d4a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "0d63e53cea7530898179e7904fedbae6", "x-ms-return-client-request-id": "true" }, @@ -29,102 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "27c661d4-29fc-40ce-bb4b-2cad741df250", - "Date": "Fri, 06 Aug 2021 01:53:36 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/37bea184-6022-4c54-95b4-ed97bc61bfa2", + "apim-request-id": "566ce975-0ad0-4178-9821-881ad1698bfc", + "Date": "Mon, 25 Oct 2021 21:20:58 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/bfb734db-55db-491d-9e1d-c752318651c6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "219" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "222" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/37bea184-6022-4c54-95b4-ed97bc61bfa2?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/bfb734db-55db-491d-9e1d-c752318651c6?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "7a482533d010f661d7a330e46a9c020c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c8d1516-cebb-44fd-bc2c-bd168f47dfd3", + "apim-request-id": "0e75df17-3971-468b-ae37-38af0e8d5d54", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:36 GMT", + "Date": "Mon, 25 Oct 2021 21:20:58 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": "37bea184-6022-4c54-95b4-ed97bc61bfa2", - "lastUpdateDateTime": "2021-08-06T01:53:36Z", - "createdDateTime": "2021-08-06T01:53:36Z", - "expirationDateTime": "2021-08-07T01:53:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/37bea184-6022-4c54-95b4-ed97bc61bfa2?showStats=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": "d4480f3cd87c0175cc930cf584ae8a9b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e0e53a8c-c5a6-40b1-8060-c3f0025c29e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:37 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": "37bea184-6022-4c54-95b4-ed97bc61bfa2", - "lastUpdateDateTime": "2021-08-06T01:53:36Z", - "createdDateTime": "2021-08-06T01:53:36Z", - "expirationDateTime": "2021-08-07T01:53:36Z", - "status": "notStarted", + "jobId": "bfb734db-55db-491d-9e1d-c752318651c6", + "lastUpdateDateTime": "2021-10-25T21:20:59Z", + "createdDateTime": "2021-10-25T21:20:59Z", + "expirationDateTime": "2021-10-26T21:20:59Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/37bea184-6022-4c54-95b4-ed97bc61bfa2?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/bfb734db-55db-491d-9e1d-c752318651c6?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4480f3cd87c0175cc930cf584ae8a9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f96c32c3-f946-4789-bf59-7e1076340e58", + "apim-request-id": "c3675f7b-526a-4309-be36-18b881ca72df", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:38 GMT", + "Date": "Mon, 25 Oct 2021 21:21:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "100" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { - "jobId": "37bea184-6022-4c54-95b4-ed97bc61bfa2", - "lastUpdateDateTime": "2021-08-06T01:53:38Z", - "createdDateTime": "2021-08-06T01:53:36Z", - "expirationDateTime": "2021-08-07T01:53:36Z", + "jobId": "bfb734db-55db-491d-9e1d-c752318651c6", + "lastUpdateDateTime": "2021-10-25T21:21:00Z", + "createdDateTime": "2021-10-25T21:20:59Z", + "expirationDateTime": "2021-10-26T21:20:59Z", "status": "succeeded", "errors": [], "results": { @@ -1108,6 +1096,6 @@ "Variables": { "RandomSeed": "894243901", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json index 0cc818753a1b..9af6bc37211d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e23331f3d580c54b834d5ef7a347cda4-b766f8e59e0e6f4e-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-622330cba4f22443a454b5956003efcc-0b6522cef061de45-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "17e898e3099143136b2e35c82964efd9", "x-ms-return-client-request-id": "true" }, @@ -29,72 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "dfa08d55-3947-4189-a1c6-7d30ba96bf76", - "Date": "Fri, 06 Aug 2021 01:54:17 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/f97bb22a-6bf7-47ff-9340-c23dd8277c26", + "apim-request-id": "47b96ead-f1cd-426a-86ae-e7fca3539452", + "Date": "Mon, 25 Oct 2021 21:21:32 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/dc82f113-1ab8-4f13-b64f-9890afc0473b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "187" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "213" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/f97bb22a-6bf7-47ff-9340-c23dd8277c26?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/dc82f113-1ab8-4f13-b64f-9890afc0473b?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "7dd0fa2b947b788e4d51b90a9e064f06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0237af3d-325d-4a14-81bb-f44e29e62fee", + "apim-request-id": "a25ec494-cc9d-4adf-a284-49dfb522203a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:17 GMT", + "Date": "Mon, 25 Oct 2021 21:21:32 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": "12" }, "ResponseBody": { - "jobId": "f97bb22a-6bf7-47ff-9340-c23dd8277c26", - "lastUpdateDateTime": "2021-08-06T01:54:17Z", - "createdDateTime": "2021-08-06T01:54:17Z", - "expirationDateTime": "2021-08-07T01:54:17Z", - "status": "notStarted", + "jobId": "dc82f113-1ab8-4f13-b64f-9890afc0473b", + "lastUpdateDateTime": "2021-10-25T21:21:32Z", + "createdDateTime": "2021-10-25T21:21:32Z", + "expirationDateTime": "2021-10-26T21:21:32Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/f97bb22a-6bf7-47ff-9340-c23dd8277c26?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/dc82f113-1ab8-4f13-b64f-9890afc0473b?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "ddd7cae644b1aa3bb79fb4ecc872f743", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab8ecddf-a6ee-42db-92b1-6c7ff3e6e822", + "apim-request-id": "27c4e64b-1423-46ee-8962-21d7d858c919", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:18 GMT", + "Date": "Mon, 25 Oct 2021 21:21:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { - "jobId": "f97bb22a-6bf7-47ff-9340-c23dd8277c26", - "lastUpdateDateTime": "2021-08-06T01:54:18Z", - "createdDateTime": "2021-08-06T01:54:17Z", - "expirationDateTime": "2021-08-07T01:54:17Z", + "jobId": "dc82f113-1ab8-4f13-b64f-9890afc0473b", + "lastUpdateDateTime": "2021-10-25T21:21:33Z", + "createdDateTime": "2021-10-25T21:21:32Z", + "expirationDateTime": "2021-10-26T21:21:32Z", "status": "succeeded", "errors": [], "results": { @@ -1078,6 +1096,6 @@ "Variables": { "RandomSeed": "1051051872", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithCancellation.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithCancellation.json index b3733c93a446..b94b8b479ab2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithCancellation.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithCancellation.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "1555", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d964a0f7cb179d489e2f8b1cdc8c009d-5f4cc067bf1bbc42-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-22bd4e1f9725374abae4d5d2432b7c2e-6a92c10f6f15cf4f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET 5.0.11; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "d6f2d0cc095dc3418ddc67fdaec34f8c", "x-ms-return-client-request-id": "true" }, @@ -69,65 +75,77 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8ab84981-a11f-4012-b329-99a5edcdc87c", - "Date": "Fri, 06 Aug 2021 01:53:39 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/90168672-730a-49cb-90d9-6e091d89def4", + "apim-request-id": "874e8e8e-1c5f-4740-b2aa-2fe072e76fd6", + "Date": "Mon, 25 Oct 2021 20:54:37 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/1945f447-3352-49f3-838c-af5a5421d4c1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "424" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "413" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/90168672-730a-49cb-90d9-6e091d89def4", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/1945f447-3352-49f3-838c-af5a5421d4c1", "RequestMethod": "DELETE", "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET 5.0.11; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "e1bd0b21afaacf4ed5d58b17e46d5140", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f95f3e23-4288-4808-8f23-1fd95859f01a", - "Date": "Fri, 06 Aug 2021 01:53:39 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/90168672-730a-49cb-90d9-6e091d89def4", + "apim-request-id": "3e715410-1721-45cf-bb87-3501e1c9c751", + "Date": "Mon, 25 Oct 2021 20:54:37 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/1945f447-3352-49f3-838c-af5a5421d4c1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/90168672-730a-49cb-90d9-6e091d89def4?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/1945f447-3352-49f3-838c-af5a5421d4c1?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET 5.0.11; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "0b47155e744b34ff8e7def83a29a0d23", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1e57ae1-532a-4b0d-b8a3-1d904b3b54e2", + "apim-request-id": "3d09fc35-56d4-43fd-bd53-e5851f6b5170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:39 GMT", + "Date": "Mon, 25 Oct 2021 20:54:37 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": "90168672-730a-49cb-90d9-6e091d89def4", - "lastUpdateDateTime": "2021-08-06T01:53:39Z", - "createdDateTime": "2021-08-06T01:53:39Z", - "expirationDateTime": "2021-08-07T01:53:39Z", + "jobId": "1945f447-3352-49f3-838c-af5a5421d4c1", + "lastUpdateDateTime": "2021-10-25T20:54:37Z", + "createdDateTime": "2021-10-25T20:54:37Z", + "expirationDateTime": "2021-10-26T20:54:37Z", "status": "cancelled", "errors": [] } @@ -136,6 +154,6 @@ "Variables": { "RandomSeed": "1115976718", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithCancellationAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithCancellationAsync.json index e108e6b6a654..663092367ca7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithCancellationAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithCancellationAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "1555", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9347793a64e5e840a2542ee8d4ddc92f-53d80e74ca3f5d4c-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-ab0b04d75f54ad45b046a6baa1e51225-70846991e6399b41-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET 5.0.11; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "174f72762caf768d734c4bc2cef9931d", "x-ms-return-client-request-id": "true" }, @@ -69,65 +75,77 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "bc9e5ac4-5614-4689-8daf-64200f7cd43d", - "Date": "Fri, 06 Aug 2021 01:54:18 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/d1580597-7e55-4231-b0b2-2427f5ac5431", + "apim-request-id": "8b920b74-e188-43a3-a2fe-968c9d996f3a", + "Date": "Mon, 25 Oct 2021 20:55:10 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/22711700-ba2d-4986-bf3b-ac0d1e8e5b42", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "356" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "407" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/d1580597-7e55-4231-b0b2-2427f5ac5431", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/22711700-ba2d-4986-bf3b-ac0d1e8e5b42", "RequestMethod": "DELETE", "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET 5.0.11; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "b4dedd3f6eed1404f274aef6ca46c145", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1f9f78d8-0b72-4049-a089-8b38b029900a", - "Date": "Fri, 06 Aug 2021 01:54:18 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/d1580597-7e55-4231-b0b2-2427f5ac5431", + "apim-request-id": "15f4a785-2b9e-43e1-a51c-d093bbdaa6a4", + "Date": "Mon, 25 Oct 2021 20:55:11 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/22711700-ba2d-4986-bf3b-ac0d1e8e5b42", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "27" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/d1580597-7e55-4231-b0b2-2427f5ac5431?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/22711700-ba2d-4986-bf3b-ac0d1e8e5b42?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET 5.0.11; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "1748fd33d947290e5b3b13a681114adc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8dc5c7a0-4b54-42d1-8490-f44b5d27aba2", + "apim-request-id": "b9975d6d-7932-441d-ab00-2da20b779ccd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:18 GMT", + "Date": "Mon, 25 Oct 2021 20:55: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "d1580597-7e55-4231-b0b2-2427f5ac5431", - "lastUpdateDateTime": "2021-08-06T01:54:19Z", - "createdDateTime": "2021-08-06T01:54:18Z", - "expirationDateTime": "2021-08-07T01:54:18Z", + "jobId": "22711700-ba2d-4986-bf3b-ac0d1e8e5b42", + "lastUpdateDateTime": "2021-10-25T20:55:11Z", + "createdDateTime": "2021-10-25T20:55:11Z", + "expirationDateTime": "2021-10-26T20:55:11Z", "status": "cancelled", "errors": [] } @@ -136,6 +154,6 @@ "Variables": { "RandomSeed": "618115820", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index 1acc022ff073..c4740706befa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3cc934a689bbb5409a73c324f10de1cb-b40056c1a70ed74e-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-6aeb7b1dcb9a2c42895194ec93a642f7-6f4d8630459f8448-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "ed679d93c08fe171a9b236aaa757046a", "x-ms-return-client-request-id": "true" }, @@ -34,102 +40,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3d130fc5-6919-4e1b-871d-c83e2f5aa9c4", - "Date": "Fri, 06 Aug 2021 01:53:39 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/294f6ba6-fa39-4c63-92c6-c4a119fce7ec", + "apim-request-id": "09887d6f-70b7-4850-a381-df626bd35c7b", + "Date": "Mon, 25 Oct 2021 21:21:04 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/ea8a3eca-8313-4dc3-baa8-df5bf2105ba5", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "249" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "371" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/294f6ba6-fa39-4c63-92c6-c4a119fce7ec?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/ea8a3eca-8313-4dc3-baa8-df5bf2105ba5?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "8ac7fae8cf64a9249598acb3531ad44c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d1fa01e6-4727-4c85-916c-b731ebeea5d0", + "apim-request-id": "dc638a5b-706e-4279-b624-c326581909eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:39 GMT", + "Date": "Mon, 25 Oct 2021 21:21:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { - "jobId": "294f6ba6-fa39-4c63-92c6-c4a119fce7ec", - "lastUpdateDateTime": "2021-08-06T01:53:39Z", - "createdDateTime": "2021-08-06T01:53:39Z", - "expirationDateTime": "2021-08-07T01:53:39Z", - "status": "notStarted", + "jobId": "ea8a3eca-8313-4dc3-baa8-df5bf2105ba5", + "lastUpdateDateTime": "2021-10-25T21:21:05Z", + "createdDateTime": "2021-10-25T21:21:04Z", + "expirationDateTime": "2021-10-26T21:21:04Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/294f6ba6-fa39-4c63-92c6-c4a119fce7ec?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/ea8a3eca-8313-4dc3-baa8-df5bf2105ba5?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "e1e35bcd7fe4ca895c5026b1fcf89877", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f38cebdf-cae8-409d-ac33-f57fd97848cc", + "apim-request-id": "a5daf0d9-e340-4165-897c-23c1f4c0ba96", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:40 GMT", + "Date": "Mon, 25 Oct 2021 21:21:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { - "jobId": "294f6ba6-fa39-4c63-92c6-c4a119fce7ec", - "lastUpdateDateTime": "2021-08-06T01:53:39Z", - "createdDateTime": "2021-08-06T01:53:39Z", - "expirationDateTime": "2021-08-07T01:53:39Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/294f6ba6-fa39-4c63-92c6-c4a119fce7ec?showStats=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": "42e053ff1beac39b78bd58f714be8d8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b2a9726d-58e6-4bbd-be60-a0eee32f61f1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "90" - }, - "ResponseBody": { - "jobId": "294f6ba6-fa39-4c63-92c6-c4a119fce7ec", - "lastUpdateDateTime": "2021-08-06T01:53:41Z", - "createdDateTime": "2021-08-06T01:53:39Z", - "expirationDateTime": "2021-08-07T01:53:39Z", + "jobId": "ea8a3eca-8313-4dc3-baa8-df5bf2105ba5", + "lastUpdateDateTime": "2021-10-25T21:21:05Z", + "createdDateTime": "2021-10-25T21:21:04Z", + "expirationDateTime": "2021-10-26T21:21:04Z", "status": "succeeded", "errors": [], "results": { @@ -1125,6 +1113,6 @@ "Variables": { "RandomSeed": "1719176907", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json index 24d1661a88d7..cc208f593d5b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-117ffa71562b3e4ebf52225b9f562c6a-3870c86e5b31e442-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-a6df4cb76fc1c54a9b4f9c929177843f-44bc1af875e2884f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "4352d8dd6e2ff74a3743e20989f20949", "x-ms-return-client-request-id": "true" }, @@ -34,102 +40,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8deb50d3-8297-416e-801f-696cd119914c", - "Date": "Fri, 06 Aug 2021 01:54:19 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/36b6a9a9-f3ea-4e02-ad0f-9afc11900575", + "apim-request-id": "9444f32c-1194-4107-b1e3-e98c8cf2a279", + "Date": "Mon, 25 Oct 2021 21:21:37 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/84067f4d-2b26-4894-855d-f5851f4c2b55", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "242" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "245" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/36b6a9a9-f3ea-4e02-ad0f-9afc11900575?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/84067f4d-2b26-4894-855d-f5851f4c2b55?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "b850713105701863d1b6a799a800b67b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6610a80-efaa-4cb2-8c47-433419e736fd", + "apim-request-id": "f58be599-f986-45c1-a027-38727e52849d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:19 GMT", + "Date": "Mon, 25 Oct 2021 21:21:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "36b6a9a9-f3ea-4e02-ad0f-9afc11900575", - "lastUpdateDateTime": "2021-08-06T01:54:19Z", - "createdDateTime": "2021-08-06T01:54:19Z", - "expirationDateTime": "2021-08-07T01:54:19Z", + "jobId": "84067f4d-2b26-4894-855d-f5851f4c2b55", + "lastUpdateDateTime": "2021-10-25T21:21:37Z", + "createdDateTime": "2021-10-25T21:21:37Z", + "expirationDateTime": "2021-10-26T21:21:37Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/36b6a9a9-f3ea-4e02-ad0f-9afc11900575?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/84067f4d-2b26-4894-855d-f5851f4c2b55?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "7b6997a8eb08a1c0115e8728d43fe710", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74eb9014-65e3-4626-a682-71386967910f", + "apim-request-id": "6664a6c9-16cb-475f-8d57-eb9d5b29d1d7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:20 GMT", + "Date": "Mon, 25 Oct 2021 21:21: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": "96" }, "ResponseBody": { - "jobId": "36b6a9a9-f3ea-4e02-ad0f-9afc11900575", - "lastUpdateDateTime": "2021-08-06T01:54:19Z", - "createdDateTime": "2021-08-06T01:54:19Z", - "expirationDateTime": "2021-08-07T01:54:19Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/36b6a9a9-f3ea-4e02-ad0f-9afc11900575?showStats=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": "c4c517d3dcd1d7de74397279c7b14e37", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5a04bdae-729c-41b7-99ee-85312d809dfd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "97" - }, - "ResponseBody": { - "jobId": "36b6a9a9-f3ea-4e02-ad0f-9afc11900575", - "lastUpdateDateTime": "2021-08-06T01:54:21Z", - "createdDateTime": "2021-08-06T01:54:19Z", - "expirationDateTime": "2021-08-07T01:54:19Z", + "jobId": "84067f4d-2b26-4894-855d-f5851f4c2b55", + "lastUpdateDateTime": "2021-10-25T21:21:38Z", + "createdDateTime": "2021-10-25T21:21:37Z", + "expirationDateTime": "2021-10-26T21:21:37Z", "status": "succeeded", "errors": [], "results": { @@ -1125,6 +1113,6 @@ "Variables": { "RandomSeed": "729062063", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json index 3115879b0993..87240ab28f0d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74d8024bdb3437409d87f058a684b904-8db362c1b3926d46-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-4a7cb6dc835e124a9cc6d94f485d4915-42b78dc9b7e6fa47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "8ec3c90b7880bba55b75abdb84a19321", "x-ms-return-client-request-id": "true" }, @@ -29,72 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "29e529c4-f1f1-48ec-97bb-f044e8021930", - "Date": "Fri, 06 Aug 2021 01:53:42 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/642e1208-8358-4c6c-836b-65e09a15b9fd", + "apim-request-id": "fd3fc46f-44b0-4e71-b395-0cd3137d931a", + "Date": "Mon, 25 Oct 2021 21:21:06 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/93e87fe5-e05c-481a-a9d7-540ddfd6e390", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "252" + "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/entities/health/jobs/642e1208-8358-4c6c-836b-65e09a15b9fd?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/93e87fe5-e05c-481a-a9d7-540ddfd6e390?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "56fe48ebb003114e437c6f5c1a23295d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfdc3490-c1b4-4863-8ea3-75cd2dd1e514", + "apim-request-id": "147b9362-41c1-40fb-b547-89be7a93d477", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:42 GMT", + "Date": "Mon, 25 Oct 2021 21:21:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "642e1208-8358-4c6c-836b-65e09a15b9fd", - "lastUpdateDateTime": "2021-08-06T01:53:42Z", - "createdDateTime": "2021-08-06T01:53:42Z", - "expirationDateTime": "2021-08-07T01:53:42Z", + "jobId": "93e87fe5-e05c-481a-a9d7-540ddfd6e390", + "lastUpdateDateTime": "2021-10-25T21:21:07Z", + "createdDateTime": "2021-10-25T21:21:07Z", + "expirationDateTime": "2021-10-26T21:21:07Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/642e1208-8358-4c6c-836b-65e09a15b9fd?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/93e87fe5-e05c-481a-a9d7-540ddfd6e390?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "e2f12bb5a78a8d006ec8d88886d7049c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8eaad053-59a8-4902-b2f2-474c50eb8db6", + "apim-request-id": "3f440e57-f8ae-4d99-ac91-35141cdcfe30", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:43 GMT", + "Date": "Mon, 25 Oct 2021 21:21:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "210" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { - "jobId": "642e1208-8358-4c6c-836b-65e09a15b9fd", - "lastUpdateDateTime": "2021-08-06T01:53:43Z", - "createdDateTime": "2021-08-06T01:53:42Z", - "expirationDateTime": "2021-08-07T01:53:42Z", + "jobId": "93e87fe5-e05c-481a-a9d7-540ddfd6e390", + "lastUpdateDateTime": "2021-10-25T21:21:08Z", + "createdDateTime": "2021-10-25T21:21:07Z", + "expirationDateTime": "2021-10-26T21:21:07Z", "status": "succeeded", "errors": [], "results": { @@ -1092,6 +1110,6 @@ "Variables": { "RandomSeed": "858087556", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json index 5aed80aceb03..450f960221af 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a503ce913604324293c57df0308b78ed-6c6b6847a04d3341-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-85d2f908de0ab24e918df38465681275-4960598048d2be49-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "cb820fc464b79dcc9212329646bf509a", "x-ms-return-client-request-id": "true" }, @@ -29,102 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3a020fee-7dab-4b13-a320-f88f24a98408", - "Date": "Fri, 06 Aug 2021 01:54:21 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/24ca837e-18a8-47a6-bc02-b6d4229ac50d", + "apim-request-id": "378e68ca-7df0-46f8-a7a0-fa4e774ca1cd", + "Date": "Mon, 25 Oct 2021 21:21:39 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/2c86fd3a-fcf9-4078-821e-1b460fd28f1a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "213" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/24ca837e-18a8-47a6-bc02-b6d4229ac50d?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/2c86fd3a-fcf9-4078-821e-1b460fd28f1a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "08d18cd76fa1ba75ad5e5758b7de00e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3a19986-0fbd-445c-a08c-5d4db9b61fb3", + "apim-request-id": "edf3acea-a10e-4b6e-a238-1eeb4c2a857f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:21 GMT", + "Date": "Mon, 25 Oct 2021 21:21:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { - "jobId": "24ca837e-18a8-47a6-bc02-b6d4229ac50d", - "lastUpdateDateTime": "2021-08-06T01:54:22Z", - "createdDateTime": "2021-08-06T01:54:22Z", - "expirationDateTime": "2021-08-07T01:54:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/24ca837e-18a8-47a6-bc02-b6d4229ac50d?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": "2ac480b3f6758c758bf3f8f60a589915", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4540d82d-b6de-47a7-8333-7d9d40966e29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54: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": "24ca837e-18a8-47a6-bc02-b6d4229ac50d", - "lastUpdateDateTime": "2021-08-06T01:54:23Z", - "createdDateTime": "2021-08-06T01:54:22Z", - "expirationDateTime": "2021-08-07T01:54:22Z", + "jobId": "2c86fd3a-fcf9-4078-821e-1b460fd28f1a", + "lastUpdateDateTime": "2021-10-25T21:21:40Z", + "createdDateTime": "2021-10-25T21:21:40Z", + "expirationDateTime": "2021-10-26T21:21:40Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/24ca837e-18a8-47a6-bc02-b6d4229ac50d?showStats=true", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/2c86fd3a-fcf9-4078-821e-1b460fd28f1a?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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4456bc1eb361546e99c71e580d73e5b3", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ac480b3f6758c758bf3f8f60a589915", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bbe26c73-0457-4ec6-ad21-f3c3c3b7acd0", + "apim-request-id": "e54539e1-3fc7-4638-a98b-377cc623db4d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:23 GMT", + "Date": "Mon, 25 Oct 2021 21:21:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "68" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "291" }, "ResponseBody": { - "jobId": "24ca837e-18a8-47a6-bc02-b6d4229ac50d", - "lastUpdateDateTime": "2021-08-06T01:54:23Z", - "createdDateTime": "2021-08-06T01:54:22Z", - "expirationDateTime": "2021-08-07T01:54:22Z", + "jobId": "2c86fd3a-fcf9-4078-821e-1b460fd28f1a", + "lastUpdateDateTime": "2021-10-25T21:21:40Z", + "createdDateTime": "2021-10-25T21:21:40Z", + "expirationDateTime": "2021-10-26T21:21:40Z", "status": "succeeded", "errors": [], "results": { @@ -1122,6 +1110,6 @@ "Variables": { "RandomSeed": "1450670554", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json index 78679f9b5d81..65258a5686a6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cd95247c04af4e4f818e5dd58aaf4d2f-d2fb1b2081215c4b-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-819b5942b050b147ab4c02ae2b07b26f-f245addde43c6946-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "e51cbf87a321df02032925de5e6708b4", "x-ms-return-client-request-id": "true" }, @@ -29,282 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9eb4422c-6e6b-429e-b18a-6132408032df", - "Date": "Fri, 06 Aug 2021 01:53:44 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95", + "apim-request-id": "2c9ebe34-501e-4d48-a709-3b723a211a7f", + "Date": "Mon, 25 Oct 2021 21:21:08 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/e1a30ca9-991b-4a12-9ebb-0a7c8e73b470", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "565" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "152" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/e1a30ca9-991b-4a12-9ebb-0a7c8e73b470?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "2cdb69530701f208f175aa6a97e2593b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "88ba2eb6-4dc0-48ba-be5c-a8ce5caa81cc", + "apim-request-id": "6be67a36-c70c-4f21-b09e-1942224ac1f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:44 GMT", + "Date": "Mon, 25 Oct 2021 21:21:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "17fa1624-1538-4764-b9f7-a6ab435d5e95", - "lastUpdateDateTime": "2021-08-06T01:53:44Z", - "createdDateTime": "2021-08-06T01:53:44Z", - "expirationDateTime": "2021-08-07T01:53:44Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95?showStats=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": "a701cb20bb11a529608aebe12f36a48e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cf53e72d-4125-4e1f-af03-5f18cbe32f33", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "17fa1624-1538-4764-b9f7-a6ab435d5e95", - "lastUpdateDateTime": "2021-08-06T01:53:44Z", - "createdDateTime": "2021-08-06T01:53:44Z", - "expirationDateTime": "2021-08-07T01:53:44Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95?showStats=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": "03c09e10ea8d7fc1b629f4abf8984821", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1c77101f-caa1-4e61-8401-376b9d6caef3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "17fa1624-1538-4764-b9f7-a6ab435d5e95", - "lastUpdateDateTime": "2021-08-06T01:53:44Z", - "createdDateTime": "2021-08-06T01:53:44Z", - "expirationDateTime": "2021-08-07T01:53:44Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95?showStats=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": "93bde9d0616598a24035cb771c26c3ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1fbae942-3fb8-4bf4-99d5-f8aa45d76358", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - }, - "ResponseBody": { - "jobId": "17fa1624-1538-4764-b9f7-a6ab435d5e95", - "lastUpdateDateTime": "2021-08-06T01:53:47Z", - "createdDateTime": "2021-08-06T01:53:44Z", - "expirationDateTime": "2021-08-07T01:53:44Z", + "jobId": "e1a30ca9-991b-4a12-9ebb-0a7c8e73b470", + "lastUpdateDateTime": "2021-10-25T21:21:09Z", + "createdDateTime": "2021-10-25T21:21:09Z", + "expirationDateTime": "2021-10-26T21:21:09Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/e1a30ca9-991b-4a12-9ebb-0a7c8e73b470?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f8591cd0562136ad0a82f0e8c77dacc7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d5c66ee1-b8bb-46a6-a083-8f33cae905fb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "17fa1624-1538-4764-b9f7-a6ab435d5e95", - "lastUpdateDateTime": "2021-08-06T01:53:47Z", - "createdDateTime": "2021-08-06T01:53:44Z", - "expirationDateTime": "2021-08-07T01:53:44Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95?showStats=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": "4511ca421179ae28fc28c2571f4a628f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6f68975a-974b-4d8e-98c8-e5d902fe78c1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:49 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": "17fa1624-1538-4764-b9f7-a6ab435d5e95", - "lastUpdateDateTime": "2021-08-06T01:53:47Z", - "createdDateTime": "2021-08-06T01:53:44Z", - "expirationDateTime": "2021-08-07T01:53:44Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95?showStats=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": "dcda39654f3f7aff3c8788e270bad0c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6174c5e6-4f49-4110-bceb-1e4c8d8e317d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "17fa1624-1538-4764-b9f7-a6ab435d5e95", - "lastUpdateDateTime": "2021-08-06T01:53:47Z", - "createdDateTime": "2021-08-06T01:53:44Z", - "expirationDateTime": "2021-08-07T01:53:44Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95?showStats=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": "523404897e15be41f4aafbf9935616bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f526a128-6ac2-425f-ae52-11427e132215", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "17fa1624-1538-4764-b9f7-a6ab435d5e95", - "lastUpdateDateTime": "2021-08-06T01:53:47Z", - "createdDateTime": "2021-08-06T01:53:44Z", - "expirationDateTime": "2021-08-07T01:53:44Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/17fa1624-1538-4764-b9f7-a6ab435d5e95?showStats=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": "8d82601fd0a2f288ca9609f188453d42", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb91f44e-af8d-4ec3-a360-2bab36fd0b61", + "apim-request-id": "ddc5e0c8-27d1-49f3-a4a0-5dad1be2632a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:52 GMT", + "Date": "Mon, 25 Oct 2021 21:21:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "93" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "314" }, "ResponseBody": { - "jobId": "17fa1624-1538-4764-b9f7-a6ab435d5e95", - "lastUpdateDateTime": "2021-08-06T01:53:52Z", - "createdDateTime": "2021-08-06T01:53:44Z", - "expirationDateTime": "2021-08-07T01:53:44Z", + "jobId": "e1a30ca9-991b-4a12-9ebb-0a7c8e73b470", + "lastUpdateDateTime": "2021-10-25T21:21:09Z", + "createdDateTime": "2021-10-25T21:21:09Z", + "expirationDateTime": "2021-10-26T21:21:09Z", "status": "succeeded", "errors": [], "results": { @@ -1288,6 +1096,6 @@ "Variables": { "RandomSeed": "1686725774", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json index 06f54be6cb47..c05e5604d31d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e19526494540414aa6e610a6ea685a93-16127bc56be9c747-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-5121d7cc4c1d7b47a55d68fa56ff536f-6f3103ebe06fe64b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "acdb13842ca5b9295fa84adf0c4870a8", "x-ms-return-client-request-id": "true" }, @@ -29,102 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cd0fb79c-373e-436f-b85d-461e371a90c7", - "Date": "Fri, 06 Aug 2021 01:54:24 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/6bb6e127-63e8-4ed2-933e-e45eaa7b4c84", + "apim-request-id": "d5b9fa99-63d2-401a-a238-b28386e94a4e", + "Date": "Mon, 25 Oct 2021 21:21:41 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/2b544e30-9318-4a61-9c50-7f8e7e82f127", "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": "239" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/6bb6e127-63e8-4ed2-933e-e45eaa7b4c84?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/2b544e30-9318-4a61-9c50-7f8e7e82f127?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "1181511460ff1ed085a4ba80632c2cfd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f40e2a50-a409-46a1-bf1f-99128abafdde", + "apim-request-id": "a19d341c-dca9-4881-aa2b-3527fa5bb4da", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:24 GMT", + "Date": "Mon, 25 Oct 2021 21:21:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "6bb6e127-63e8-4ed2-933e-e45eaa7b4c84", - "lastUpdateDateTime": "2021-08-06T01:54:25Z", - "createdDateTime": "2021-08-06T01:54:24Z", - "expirationDateTime": "2021-08-07T01:54:24Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/6bb6e127-63e8-4ed2-933e-e45eaa7b4c84?showStats=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": "d0605b7dc709a544ca5e0c1b0401dc1e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "04ded138-691d-44e1-a1d9-b85ec4721284", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "6bb6e127-63e8-4ed2-933e-e45eaa7b4c84", - "lastUpdateDateTime": "2021-08-06T01:54:26Z", - "createdDateTime": "2021-08-06T01:54:24Z", - "expirationDateTime": "2021-08-07T01:54:24Z", + "jobId": "2b544e30-9318-4a61-9c50-7f8e7e82f127", + "lastUpdateDateTime": "2021-10-25T21:21:42Z", + "createdDateTime": "2021-10-25T21:21:42Z", + "expirationDateTime": "2021-10-26T21:21:42Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/6bb6e127-63e8-4ed2-933e-e45eaa7b4c84?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/2b544e30-9318-4a61-9c50-7f8e7e82f127?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b5e59345e53b24c743bd270071a85633", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0605b7dc709a544ca5e0c1b0401dc1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f4e8a4f-51e3-46b3-b685-467a1efb058f", + "apim-request-id": "041f80f8-973e-444d-83ff-94230c567221", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:26 GMT", + "Date": "Mon, 25 Oct 2021 21:21:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "726" }, "ResponseBody": { - "jobId": "6bb6e127-63e8-4ed2-933e-e45eaa7b4c84", - "lastUpdateDateTime": "2021-08-06T01:54:26Z", - "createdDateTime": "2021-08-06T01:54:24Z", - "expirationDateTime": "2021-08-07T01:54:24Z", + "jobId": "2b544e30-9318-4a61-9c50-7f8e7e82f127", + "lastUpdateDateTime": "2021-10-25T21:21:43Z", + "createdDateTime": "2021-10-25T21:21:42Z", + "expirationDateTime": "2021-10-26T21:21:42Z", "status": "succeeded", "errors": [], "results": { @@ -1108,6 +1096,6 @@ "Variables": { "RandomSeed": "1184190609", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithAADTest.json index a47a631d8dab..8828aca7bc91 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "223", "Content-Type": "application/json", - "traceparent": "00-f19705ac35c95947832d3629f0c97579-0265e7c2ec7fdb4c-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-887e8f3326b3f94cad85e1301e8a8d0c-1fb677636870524e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6f7e0341a64022d7b45d914357fc0f3", "x-ms-return-client-request-id": "true" }, @@ -29,372 +29,72 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fd40b5db-1790-4721-8099-a3554cecdd84", - "Date": "Fri, 06 Aug 2021 01:53:54 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e", + "apim-request-id": "ff113163-bee7-4b0c-b6d1-b6f2d554a63b", + "Date": "Mon, 25 Oct 2021 23:04:38 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/adf172ed-edb1-491e-9054-732401840281", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "298" + "x-envoy-upstream-service-time": "309" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/adf172ed-edb1-491e-9054-732401840281?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f5de89533a8cd5a155d6e0c454529417", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c1cd253-30a5-42ec-85f2-14b5c31658d1", + "apim-request-id": "199f80c1-2d85-4b82-ac36-9e6cdbce2100", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:54 GMT", + "Date": "Mon, 25 Oct 2021 23:04: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": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:55Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "70d0ff4dc240dcfdda801c90a0a7e7d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5a604313-b67e-4741-acba-52fc096a8ed2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - }, - "ResponseBody": { - "jobId": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:55Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "24800af65c34fa3a3e22608e3a69ae28", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "aee1bc86-def3-49d9-b390-bd869b980585", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:56Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "35c6c2b04faf91b28b011b0c1d1134ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9d433b41-2dee-4ce9-a781-40bbdf816de2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:57 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": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:56Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "49ce0cee70d1f0e2c5d6311d616fa271", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6a8aae89-95f6-4056-9615-1f64a5dd3ccb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - }, - "ResponseBody": { - "jobId": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:56Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dedff4d1b1e1a62558ef9833412edc2d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ec843653-65ac-47b0-a3fc-c6eaf9d37610", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:53: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": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:56Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2d9fb3ee659b3f56e0d66fd81d95301c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8402fbe5-33cd-47f1-a872-9fcfebcfd6df", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:56Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "293aa95f55313ccce727f1e2d8aeae97", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "383356d5-832f-4667-a3fe-23ae3a3da8f3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54: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": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:56Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", + "jobId": "adf172ed-edb1-491e-9054-732401840281", + "lastUpdateDateTime": "2021-10-25T23:04:39Z", + "createdDateTime": "2021-10-25T23:04:39Z", + "expirationDateTime": "2021-10-26T23:04:39Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/adf172ed-edb1-491e-9054-732401840281?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ad2f04fa74cf6cd69ea0fe0a414d88c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ce8cdd70-6aaa-4830-b582-6888813e4b05", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:02 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": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:56Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "98d47cbfb2f498fbe763467374736731", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "640df2f3-5ba5-4245-a7c3-1767a19ad8a5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54: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": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:56Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "19ddd8278265eb4cd3cd8b9157c1fa99", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "23f7b214-abdd-4b0f-901b-b3d377708132", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54: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": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:53:56Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/5a01b60c-c8c3-494b-8086-94cfe7036c5e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210805.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5b232e9f16da48a30997c56c2d63f82a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "70d0ff4dc240dcfdda801c90a0a7e7d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "963c238f-9973-48d8-bb4a-70118c531175", + "apim-request-id": "6c03299b-c25e-441a-b33a-9fb466268172", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:07 GMT", + "Date": "Mon, 25 Oct 2021 23:04:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": { - "jobId": "5a01b60c-c8c3-494b-8086-94cfe7036c5e", - "lastUpdateDateTime": "2021-08-06T01:54:06Z", - "createdDateTime": "2021-08-06T01:53:55Z", - "expirationDateTime": "2021-08-07T01:53:55Z", + "jobId": "adf172ed-edb1-491e-9054-732401840281", + "lastUpdateDateTime": "2021-10-25T23:04:39Z", + "createdDateTime": "2021-10-25T23:04:39Z", + "expirationDateTime": "2021-10-26T23:04:39Z", "status": "succeeded", "errors": [], "results": { @@ -1377,6 +1077,6 @@ ], "Variables": { "RandomSeed": "1512412604", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithAADTestAsync.json index cc0d5564a634..1e4612022699 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "223", "Content-Type": "application/json", - "traceparent": "00-076954a0ed18014786bd27d628d48011-db29d7a83afaf146-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-dcd149d1ea92524599fa1fcce7764f32-6d5c8778fa23b14d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75c845c38dcd3f46345eedf2a35dbe85", "x-ms-return-client-request-id": "true" }, @@ -29,72 +29,72 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3cb0b783-2981-4499-9b15-6a669cf733a3", - "Date": "Fri, 06 Aug 2021 01:54:27 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/13bc3e8d-75e4-4801-9f24-649625035b22", + "apim-request-id": "29e1ce07-0160-4d18-8ddc-809b5aa91d5a", + "Date": "Mon, 25 Oct 2021 23:04:40 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/b954c8c6-7fae-4ebd-97d4-7a9fed92929e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "170" + "x-envoy-upstream-service-time": "435" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/13bc3e8d-75e4-4801-9f24-649625035b22?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/b954c8c6-7fae-4ebd-97d4-7a9fed92929e?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d6f51af2fccf95931116e120328160e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1711bfcd-3319-41d5-89f5-040b1ff7bed7", + "apim-request-id": "09be7158-4703-491c-9095-4ca9c18addaf", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:27 GMT", + "Date": "Mon, 25 Oct 2021 23:04:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "13bc3e8d-75e4-4801-9f24-649625035b22", - "lastUpdateDateTime": "2021-08-06T01:54:28Z", - "createdDateTime": "2021-08-06T01:54:27Z", - "expirationDateTime": "2021-08-07T01:54:27Z", + "jobId": "b954c8c6-7fae-4ebd-97d4-7a9fed92929e", + "lastUpdateDateTime": "2021-10-25T23:04:41Z", + "createdDateTime": "2021-10-25T23:04:41Z", + "expirationDateTime": "2021-10-26T23:04:41Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/13bc3e8d-75e4-4801-9f24-649625035b22?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/b954c8c6-7fae-4ebd-97d4-7a9fed92929e?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb8299e4c8dd4bf3adaf2a6c8df7992c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e7ab0be-cb58-4c2d-bc7b-cbea2850f6a2", + "apim-request-id": "873dd471-3669-4980-b521-77bda6fb132e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:28 GMT", + "Date": "Mon, 25 Oct 2021 23:04:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { - "jobId": "13bc3e8d-75e4-4801-9f24-649625035b22", - "lastUpdateDateTime": "2021-08-06T01:54:28Z", - "createdDateTime": "2021-08-06T01:54:27Z", - "expirationDateTime": "2021-08-07T01:54:27Z", + "jobId": "b954c8c6-7fae-4ebd-97d4-7a9fed92929e", + "lastUpdateDateTime": "2021-10-25T23:04:41Z", + "createdDateTime": "2021-10-25T23:04:41Z", + "expirationDateTime": "2021-10-26T23:04:41Z", "status": "succeeded", "errors": [], "results": { @@ -1077,6 +1077,6 @@ ], "Variables": { "RandomSeed": "518000854", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json index 4d7bf11bb194..2ff76800d609 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7f4984dd095ad3469b669a2c413e4505-71c3df90b077a849-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-1f435947ec4a53448d3abb62194fe604-c93ba45159a1de41-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "0e649e128b084513c9c62e584c5f813b", "x-ms-return-client-request-id": "true" }, @@ -29,72 +35,228 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3afff7a4-b8a6-48ec-8182-a6d5a8c88357", - "Date": "Fri, 06 Aug 2021 01:54:07 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/81cf7138-be59-42b9-8b7a-3c83dff39e57", + "apim-request-id": "87a29528-0e77-4169-b528-f021f6d1bfb4", + "Date": "Mon, 25 Oct 2021 21:21:11 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/61192f03-a823-4f32-a5c7-aadb0829744e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "204" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "194" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/81cf7138-be59-42b9-8b7a-3c83dff39e57?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/61192f03-a823-4f32-a5c7-aadb0829744e?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "796705c1528f3adf8bba34f0a8f2bd37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19c7bd31-ae15-43e6-a097-a7acb2b377c4", + "apim-request-id": "4baea389-3d16-405b-8391-773addb8188b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:07 GMT", + "Date": "Mon, 25 Oct 2021 21:21:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "81cf7138-be59-42b9-8b7a-3c83dff39e57", - "lastUpdateDateTime": "2021-08-06T01:54:07Z", - "createdDateTime": "2021-08-06T01:54:07Z", - "expirationDateTime": "2021-08-07T01:54:07Z", + "jobId": "61192f03-a823-4f32-a5c7-aadb0829744e", + "lastUpdateDateTime": "2021-10-25T21:21:12Z", + "createdDateTime": "2021-10-25T21:21:12Z", + "expirationDateTime": "2021-10-26T21:21:12Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/81cf7138-be59-42b9-8b7a-3c83dff39e57?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/61192f03-a823-4f32-a5c7-aadb0829744e?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "740ea8ad2ce006c130b149d1ae645358", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1edcdf13-cafc-484d-9438-4162936a62fe", + "apim-request-id": "476c8fbf-205a-4d0d-9878-ace19ca7b622", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:08 GMT", + "Date": "Mon, 25 Oct 2021 21:21:13 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": "11" }, "ResponseBody": { - "jobId": "81cf7138-be59-42b9-8b7a-3c83dff39e57", - "lastUpdateDateTime": "2021-08-06T01:54:08Z", - "createdDateTime": "2021-08-06T01:54:07Z", - "expirationDateTime": "2021-08-07T01:54:07Z", + "jobId": "61192f03-a823-4f32-a5c7-aadb0829744e", + "lastUpdateDateTime": "2021-10-25T21:21:12Z", + "createdDateTime": "2021-10-25T21:21:12Z", + "expirationDateTime": "2021-10-26T21:21:12Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/61192f03-a823-4f32-a5c7-aadb0829744e?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07effce6ecdcc068be2a834d57229cd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "899c2116-5aa0-4ed9-911c-dbf56ac2bbdb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21: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": "61192f03-a823-4f32-a5c7-aadb0829744e", + "lastUpdateDateTime": "2021-10-25T21:21:12Z", + "createdDateTime": "2021-10-25T21:21:12Z", + "expirationDateTime": "2021-10-26T21:21:12Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/61192f03-a823-4f32-a5c7-aadb0829744e?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4abf7090d51955a436148dd080e8c26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "80b49ea9-87ee-4d10-9d95-1f89be196acd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "61192f03-a823-4f32-a5c7-aadb0829744e", + "lastUpdateDateTime": "2021-10-25T21:21:12Z", + "createdDateTime": "2021-10-25T21:21:12Z", + "expirationDateTime": "2021-10-26T21:21:12Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/61192f03-a823-4f32-a5c7-aadb0829744e?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac0adb67b502c15a3f4db5b5a873ae0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "342cd8d7-c553-4f87-9563-360d5464aa5c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21: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": "61192f03-a823-4f32-a5c7-aadb0829744e", + "lastUpdateDateTime": "2021-10-25T21:21:18Z", + "createdDateTime": "2021-10-25T21:21:12Z", + "expirationDateTime": "2021-10-26T21:21:12Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/61192f03-a823-4f32-a5c7-aadb0829744e?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6c77215aeb9d807a159c37ba38bb7b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e2507995-651a-4ab3-8bdc-745ac5df3b5a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "76" + }, + "ResponseBody": { + "jobId": "61192f03-a823-4f32-a5c7-aadb0829744e", + "lastUpdateDateTime": "2021-10-25T21:21:18Z", + "createdDateTime": "2021-10-25T21:21:12Z", + "expirationDateTime": "2021-10-26T21:21:12Z", "status": "succeeded", "errors": [], "results": { @@ -1078,6 +1240,6 @@ "Variables": { "RandomSeed": "1940196881", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json index ff23654624c7..99a50da461bb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9a9cf05cd1cedf4abd70fd71251bcd3f-ab59eaf6082d4f4f-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-6db26f70a547da41a329b07baff8e28a-2515ef6536b1d641-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "ac50657e0564f29f4cf677ed0a13f18a", "x-ms-return-client-request-id": "true" }, @@ -29,102 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fbf83210-cae0-4d6f-82c9-fae1cc42444c", - "Date": "Fri, 06 Aug 2021 01:54:28 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/1df3e2b2-aa44-4347-bbdd-e1651c9c5665", + "apim-request-id": "acc9d45d-5189-4856-9291-12ae393311f8", + "Date": "Mon, 25 Oct 2021 21:21:45 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/d206b0d2-da00-4e10-988e-2d6259cde75b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "299" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "233" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/1df3e2b2-aa44-4347-bbdd-e1651c9c5665?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/d206b0d2-da00-4e10-988e-2d6259cde75b?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "ee06e8ec9851bf144fa0b3348eac9147", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0603abd8-682c-49dc-bb6c-bb277c34e413", + "apim-request-id": "501b6019-3097-4111-a34b-d1d8f0d50a87", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:28 GMT", + "Date": "Mon, 25 Oct 2021 21:21:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "212" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "1df3e2b2-aa44-4347-bbdd-e1651c9c5665", - "lastUpdateDateTime": "2021-08-06T01:54:29Z", - "createdDateTime": "2021-08-06T01:54:29Z", - "expirationDateTime": "2021-08-07T01:54:29Z", - "status": "notStarted", + "jobId": "d206b0d2-da00-4e10-988e-2d6259cde75b", + "lastUpdateDateTime": "2021-10-25T21:21:46Z", + "createdDateTime": "2021-10-25T21:21:46Z", + "expirationDateTime": "2021-10-26T21:21:46Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/1df3e2b2-aa44-4347-bbdd-e1651c9c5665?showStats=false", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/health/jobs/d206b0d2-da00-4e10-988e-2d6259cde75b?showStats=false", "RequestMethod": "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 Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "c56f00a8f06aed051c550a52700d0abf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9ba229f-522d-438c-be3e-ff5236dc6d62", + "apim-request-id": "1dfb2573-b8ab-4a23-85df-db33e0ba21b8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:30 GMT", + "Date": "Mon, 25 Oct 2021 21:21: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "584" }, "ResponseBody": { - "jobId": "1df3e2b2-aa44-4347-bbdd-e1651c9c5665", - "lastUpdateDateTime": "2021-08-06T01:54:29Z", - "createdDateTime": "2021-08-06T01:54:29Z", - "expirationDateTime": "2021-08-07T01:54:29Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/health/jobs/1df3e2b2-aa44-4347-bbdd-e1651c9c5665?showStats=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": "c9cabda7fe2ee58e51915dc3526b639f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "db2a90d8-e5b4-4104-a8e7-21b183b8a9b8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 06 Aug 2021 01:54:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "67" - }, - "ResponseBody": { - "jobId": "1df3e2b2-aa44-4347-bbdd-e1651c9c5665", - "lastUpdateDateTime": "2021-08-06T01:54:31Z", - "createdDateTime": "2021-08-06T01:54:29Z", - "expirationDateTime": "2021-08-07T01:54:29Z", + "jobId": "d206b0d2-da00-4e10-988e-2d6259cde75b", + "lastUpdateDateTime": "2021-10-25T21:21:47Z", + "createdDateTime": "2021-10-25T21:21:46Z", + "expirationDateTime": "2021-10-26T21:21:46Z", "status": "succeeded", "errors": [], "results": { @@ -1108,6 +1096,6 @@ "Variables": { "RandomSeed": "330150674", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json index 6b10167f9403..af6b64229ee3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2a4abdd8e7642a4bb9a2aec484f5be12-db2683dff90d574c-00", + "traceparent": "00-4018b2fd2ec8764a964b62b7dca57cf7-b5da38308b293c4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d727f8b3ab5caeec2a15d6a3b1743ade", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e49c77eb-1192-47d0-9bff-6bf5e7c65494", + "apim-request-id": "2da957ba-8919-4a79-bf54-1e572a5c0c3c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:56 GMT", + "Date": "Mon, 25 Oct 2021 21:21:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ @@ -147,6 +147,6 @@ "Variables": { "RandomSeed": "1090158568", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json index 5c6048843f09..a3548c470b17 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ef275b2288fa604da9b7c0e346d34e58-a098800dbf9f5542-00", + "traceparent": "00-0359df4de62c41449247091dcf969fa7-85e2ce408841604c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "476534efbdc7cda5ab406b046713b5b6", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf666b20-9e62-4425-ac42-02135a72dab8", + "apim-request-id": "83ec7984-2895-441c-b4c3-cb870307614c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:58 GMT", + "Date": "Mon, 25 Oct 2021 21:22:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ @@ -147,6 +147,6 @@ "Variables": { "RandomSeed": "118147903", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json index f9b6a44c3ca1..76e56f2029cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dcd70ec931219249a780f8577eb52c1e-bf1ac7a6dbb73d42-00", + "traceparent": "00-57c04b9d2266f545bb4456c57662a8b0-83e4c3bb6fee314a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "297e980ed9e8189820ebd45ff129bc5c", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b84b68cb-8219-4a79-9af9-faabef79fb69", + "apim-request-id": "0aa8c172-86d3-4fe1-8dba-139f5ee7227c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:56 GMT", + "Date": "Mon, 25 Oct 2021 21:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "statistics": { @@ -161,6 +161,6 @@ "Variables": { "RandomSeed": "966684010", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json index 805626136dff..996c1ae5b37c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-05d2130caca95e49a6874a842edcf8bf-4a7d14c272189e49-00", + "traceparent": "00-9b97094c4f3cb44b864f32ffdc005bea-e0f6eddc0c0e0840-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "efbfe45b25f6d2a2775e1edd2fe4e7aa", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e14faf46-f09f-4e18-a3ff-27053feab3a5", + "apim-request-id": "a684fccc-12de-452e-bdd7-2d6e68d950ee", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:58 GMT", + "Date": "Mon, 25 Oct 2021 21:22:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "statistics": { @@ -161,6 +161,6 @@ "Variables": { "RandomSeed": "1003575897", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json index 494bec98e9c0..a84c54a9b7d4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a343783e99ca51439f843d49b0b45050-774182e5dd52cf4d-00", + "traceparent": "00-b3bdf4e0e0518c428b6b7dc783bc7650-371f4d04165dcb41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "70aff255bc0a587f23734ec6facb2924", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e62bfce8-de8d-4083-817d-dd602791d8b5", + "apim-request-id": "68fd624a-c493-412a-b76b-5b21e34b0d82", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:56 GMT", + "Date": "Mon, 25 Oct 2021 21:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "documents": [ @@ -163,6 +163,6 @@ "Variables": { "RandomSeed": "1863021454", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json index 5f605fd03415..b0659f36aae2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b7db62a783f784f9d212bb8090d5205-78a0b4142ccf0f45-00", + "traceparent": "00-bed176b64483f84e94202984c137e83f-e881af98a979b446-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "b6c8d0c26960e1039b6b5addff48c5fe", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ddb41cb8-f93b-48d2-a063-0fbe0c048cb0", + "apim-request-id": "cef1e792-1981-40e5-b71f-581ee5a2c4e2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:58 GMT", + "Date": "Mon, 25 Oct 2021 21:22:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "documents": [ @@ -163,6 +163,6 @@ "Variables": { "RandomSeed": "1694310088", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json index 77bcb1370355..768677022af0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d594b7f7305eb141adc583e358ed8981-c0b4aeaff0541b40-00", + "traceparent": "00-f9017ebda1bbc14ba0373dc9a3a0903c-988dc6cc1e430b41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "1199dc8afc6a0ac5f0743171c35d6934", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b79123a-8f2c-4988-9bb5-57ada427ee30", + "apim-request-id": "3e8f6fd5-3789-4bc6-9a99-ff9b7be826b1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:56 GMT", + "Date": "Mon, 25 Oct 2021 21:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ @@ -164,6 +164,6 @@ "Variables": { "RandomSeed": "2120326363", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json index d326663b7ece..2b15839df119 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f70b88e9196acc45ba283414d05ef0d4-9fd4712e1c9c324e-00", + "traceparent": "00-aedb5de92c47b540b3d16b46aab93bad-459508812d910e4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "4f030e46456aaab2ab975c8325cfab86", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2b87f82-04c8-4c58-bdf2-6fb6c9c7b9f5", + "apim-request-id": "a796a96e-9b54-4545-80ef-7ac75f26d5e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:58 GMT", + "Date": "Mon, 25 Oct 2021 21:22:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -164,6 +164,6 @@ "Variables": { "RandomSeed": "1773584232", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json index 1708643d69ef..51f29da44ffc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c8a6514bfc35f4428e7ca37f457c2a6a-9adee1e64eec634d-00", + "traceparent": "00-93b08d16a5f82a4182b32da19494f388-5d2e4d3b24a8074d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "192c3c1f91647770ee90b0e32a189a79", "x-ms-return-client-request-id": "true" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "9dd194fe-9568-4f84-a584-748df0901269", + "apim-request-id": "215ef9ba-5799-470a-99ec-45f97a23f002", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:57 GMT", + "Date": "Mon, 25 Oct 2021 21:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "907456664", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index 43424972cf23..1fcd6ef44d06 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ca6f349437a2004ea15051c5868f4e7a-f1719c97eac4604b-00", + "traceparent": "00-de8212d67cc17b448b09520e4be3ce6b-15a6f4c946d4d248-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "aa01d6b77b2b2d76ec0e72d5ad5d4024", "x-ms-return-client-request-id": "true" @@ -55,9 +55,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e3b24464-cf82-4ec6-a89c-11267369467a", + "apim-request-id": "cb91aae7-3ef7-42f3-ae28-009b201f884b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:58 GMT", + "Date": "Mon, 25 Oct 2021 21:22:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "602192603", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index a75b8cbc7a1f..4ac51172a8ac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-060e06d53770bb40842aef94f8db470e-6abfbb994737bc4d-00", + "traceparent": "00-6fefc88331389847bda8d49417cf0c5d-a2b16bad173ca546-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "39e775856c33e5040de74ed9f57d5d06", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "779242b8-9b0e-49d7-addf-6d7794d48427", + "apim-request-id": "ab63b873-3db6-476a-96de-dfe0ba0e9277", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:57 GMT", + "Date": "Mon, 25 Oct 2021 21:21:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "143174300", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index d8cb77832868..35e2dc4e63ae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8d73145a4ff10544bf70b57dbfda8515-9d028ca46ed67d42-00", + "traceparent": "00-6cb5c13ef3495c4fbb4eb0afae0456b9-9241990b3b3cd745-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "9f2af246abde141d1e5ee3f98d0120cc", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "0f81fd3b-c7ca-494a-86ee-37b331f02587", + "apim-request-id": "c5ee14eb-6e60-4a93-afae-c6ef92fbad51", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:58 GMT", + "Date": "Mon, 25 Oct 2021 21:22:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "688120200", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index 337be7c3cdb4..9668179ffdfb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-22e7286de570e945b6073c23d6d0d245-fa737a4a6fe3ed44-00", + "traceparent": "00-58f01658e6c0f44a86fd9145dab7287b-3c1f058337bb6646-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "73d297ac9bb0c1f746fd7bde1da9241c", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc75d6a4-a152-49a3-9103-919d1ad844a5", + "apim-request-id": "15a60860-a393-4d37-94e8-b62de01a2a3e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:57 GMT", + "Date": "Mon, 25 Oct 2021 21:21:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "857365247", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json index 79d988c83a2a..c60bca967480 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ee9a1698abe4bf40995610143033736e-24be002d76c61e4a-00", + "traceparent": "00-6cf5250ee4a24c4b8a07c55b55605bd2-9343eb6cffb6854f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "eb53c4f0f4de762a1a8dd9e931cc3cf8", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf01df71-a1f9-4d04-9d5c-54bc6e2fddc2", + "apim-request-id": "dc133aa8-afbe-4967-9c7f-161d6346d394", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Aug 2021 18:39:59 GMT", + "Date": "Mon, 25 Oct 2021 21:22:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1341433425", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json index 1499627d2a1a..565644520075 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b1a06aeb63cab542a5b38f62fbd68400-73acb03a5dc07e4b-00", + "traceparent": "00-5471ef9536b0224a967fe991ebec77c0-d3d2103fe9a21340-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "07178a1f00e9eae492911a1486f7f75f", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56d4b07a-272c-4e30-9e7c-f42babe6ddc2", + "apim-request-id": "3e60e4eb-8bf2-4afc-bb05-ea0386ae4cc5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:57 GMT", + "Date": "Mon, 25 Oct 2021 21:21:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "statistics": { @@ -177,6 +177,6 @@ "Variables": { "RandomSeed": "775198464", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json index fe546dee4abd..27531ce1cfb5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e1cedc0c4ee4db449646458db3fdf5a3-d8033380aae3244b-00", + "traceparent": "00-2397aa869744094e8a8fb4ca5a314c13-90f52b495ab94849-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "c81f2c7c8424b466b144609b6251448a", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1aa35670-1e82-46be-af53-18d0a1aebda1", + "apim-request-id": "4ab28681-28a2-4cf4-b811-06bc5d215d76", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 03 Aug 2021 18:39:59 GMT", + "Date": "Mon, 25 Oct 2021 21:22:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "statistics": { @@ -177,6 +177,6 @@ "Variables": { "RandomSeed": "1369620328", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json index c2465a714722..bd6eb663712c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c76f2be97b99b54e885bcfc0af8cde7c-c5c4b9ea86695a49-00", + "traceparent": "00-290ba8e95bb0494bafcbdd73ee918d71-ac7fad601ff2df48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5dbd0e4d74f1991eb1c26555a87606e8", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f401ed45-efe8-4bf5-9228-9f40f194c937", + "apim-request-id": "a2e3830e-06a6-4512-8ca8-9e2d543bc4e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:57 GMT", + "Date": "Mon, 25 Oct 2021 21:21:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "862299711", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index de971a0b2a38..f0b4a2a53737 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5153ef91700af44da97fc9e4390f6c96-8c9ea9c963b40742-00", + "traceparent": "00-9fae55152ddf284eaaf8deb0d6be39fb-4c4663f94507da44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "552924120f9751fcf8de062c168ba5ca", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6a04a2b1-daf7-42bc-abdf-cd8cede124c3", + "apim-request-id": "045f908f-2f76-4527-9c76-55a4d3bf053d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:59 GMT", + "Date": "Mon, 25 Oct 2021 21:22:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "451982382", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTest.json index 34fc4e2c9ab2..bc2039105bd6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTest.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-1f06ebfefa84e54cb912ad0d2bd66dd9-13dbc2c85907e049-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-7bfa63bd6302104b8ea8fd5f9df93793-10ea10708175bb40-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9cfcb2d38a13d7403cf9b4c884309692", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73af5bb9-1bdf-4f02-b78b-1a6e959f3933", + "apim-request-id": "6a03455c-f0d3-475e-9611-6e66f7dd6fa5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:57 GMT", + "Date": "Mon, 25 Oct 2021 23:04:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "documents": [ @@ -103,6 +97,6 @@ ], "Variables": { "RandomSeed": "386580990", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTestAsync.json index 616fcf51b50c..bcd586a791be 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithAADTestAsync.json @@ -1,21 +1,15 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "103", "Content-Type": "application/json", - "traceparent": "00-0a8f7e76a247064dbbfe539a6e9b201d-08cdb7d7836c9943-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-ec7a375e8ed80a469dbaf5560b4b7825-f11f906f7f04b341-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53ef8655a9a359cd56891afb97313ae8", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "891f76a4-d7f7-4b98-901a-64ebadd18c93", + "apim-request-id": "9672b445-0623-4b91-a69d-e6e7f3b5319a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:59 GMT", + "Date": "Mon, 25 Oct 2021 23:04:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ @@ -103,6 +97,6 @@ ], "Variables": { "RandomSeed": "1023607557", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index 0b57fe3079b4..2e2963257b66 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fed95e85d836fd49be053384c6194ecc-3a491d7874b1514e-00", + "traceparent": "00-fd6e7ada71e5e844aa011bd9b53340b8-985dc10b3c30b246-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "934878dc21c8a0a984e7d2d9ad60c773", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9581e685-0cb0-4e1a-96de-d69fd00e714f", + "apim-request-id": "a96e6847-4fe5-4646-a7b5-8e0a3d1997a0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:57 GMT", + "Date": "Mon, 25 Oct 2021 21:21:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "1916186259", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index 70a1e023c456..3d17a1c1f6ca 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-09ebaba408b99a4da47d659d8269d94f-6a678d2b8b189848-00", + "traceparent": "00-93fbeeb98b1e9744b24d278bbb891c54-f20b7664817f7e44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "25dfcc445911727a9003f8f77dc4c2e5", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3e5fd37-040f-432a-960e-97a3fa42d730", + "apim-request-id": "8d7e9766-994c-47e6-b289-c1c67e67fe49", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:39:59 GMT", + "Date": "Mon, 25 Oct 2021 21:22:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "1422875153", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithMultipleActions.json new file mode 100644 index 000000000000..e6c84afb31c4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithMultipleActions.json @@ -0,0 +1,1247 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "461", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d4d13a7e40331d45b40473492369498a-cbac6e84a37a104a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "476929731fb859169740acaba5ee9ed6", + "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": "3", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen.", + "language": "es" + } + ] + }, + "tasks": { + "entityLinkingTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizeLinkedEntities" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "60a6a95b-4955-4e21-9f5a-12f84c70b09a", + "Date": "Mon, 25 Oct 2021 21:21:52 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "277" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cbe073f3d3eebf1605108fd45983580", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1637300e-c021-4d67-a14f-d485f73d72ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "jobId": "f9c3f748-7b33-44b9-9ae1-48751e369f16", + "lastUpdateDateTime": "2021-10-25T21:21:53Z", + "createdDateTime": "2021-10-25T21:21:52Z", + "expirationDateTime": "2021-10-26T21:21:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1c5b125e3ca39de7995125b7dbcd6fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c5ba3f91-e448-4023-a7ad-d65ec121fb01", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21: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": "f9c3f748-7b33-44b9-9ae1-48751e369f16", + "lastUpdateDateTime": "2021-10-25T21:21:53Z", + "createdDateTime": "2021-10-25T21:21:52Z", + "expirationDateTime": "2021-10-26T21:21:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "574d387fb3e53516387ee667161914ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "512a86dd-1209-4255-a905-32bf3603082b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21: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": "f9c3f748-7b33-44b9-9ae1-48751e369f16", + "lastUpdateDateTime": "2021-10-25T21:21:53Z", + "createdDateTime": "2021-10-25T21:21:52Z", + "expirationDateTime": "2021-10-26T21:21:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3862b0bcd295b0c2984d3a82b956da3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "83bc22ff-569b-4bbf-a274-e5ce1b0e1759", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21: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": "f9c3f748-7b33-44b9-9ae1-48751e369f16", + "lastUpdateDateTime": "2021-10-25T21:21:53Z", + "createdDateTime": "2021-10-25T21:21:52Z", + "expirationDateTime": "2021-10-26T21:21:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c7e097ade4a719b9a8f984bfd762360", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c487a1a4-9362-4e03-835b-9f26c256d1de", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" + }, + "ResponseBody": { + "jobId": "f9c3f748-7b33-44b9-9ae1-48751e369f16", + "lastUpdateDateTime": "2021-10-25T21:21:57Z", + "createdDateTime": "2021-10-25T21:21:52Z", + "expirationDateTime": "2021-10-26T21:21:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:21:57.6116502Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "514f1381e236b1d52cf12e61e06d0aa2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8a373a18-b870-415c-8854-263f3bd44e73", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:21:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "71" + }, + "ResponseBody": { + "jobId": "f9c3f748-7b33-44b9-9ae1-48751e369f16", + "lastUpdateDateTime": "2021-10-25T21:21:57Z", + "createdDateTime": "2021-10-25T21:21:52Z", + "expirationDateTime": "2021-10-26T21:21:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:21:57.6116502Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0cec4210089a2db49014599934c15eb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "741f0951-5713-46fd-b9b0-6b8bf59ca0b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "364" + }, + "ResponseBody": { + "jobId": "f9c3f748-7b33-44b9-9ae1-48751e369f16", + "lastUpdateDateTime": "2021-10-25T21:21:57Z", + "createdDateTime": "2021-10-25T21:21:52Z", + "expirationDateTime": "2021-10-26T21:21:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:21:57.6116502Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "172773611b45986d34cce059af3a912d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "00ccfcae-b6f2-4856-a7bc-44468f6f224a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:02 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": "f9c3f748-7b33-44b9-9ae1-48751e369f16", + "lastUpdateDateTime": "2021-10-25T21:21:57Z", + "createdDateTime": "2021-10-25T21:21:52Z", + "expirationDateTime": "2021-10-26T21:21:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:21:57.6116502Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/f9c3f748-7b33-44b9-9ae1-48751e369f16", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba3af685168978c55f22c121893c7c6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c874028-825c-481d-a45e-27054c10b04e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:04 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": "f9c3f748-7b33-44b9-9ae1-48751e369f16", + "lastUpdateDateTime": "2021-10-25T21:22:04Z", + "createdDateTime": "2021-10-25T21:21:52Z", + "expirationDateTime": "2021-10-26T21:21:52Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:21:57.6116502Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:22:04.7772792Z", + "taskName": "RecognizeLinkedEntities", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1177529321", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithMultipleActionsAsync.json new file mode 100644 index 000000000000..854739e9e0e6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithMultipleActionsAsync.json @@ -0,0 +1,1898 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "461", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-8aa7d8b6789c2c4f9ee10922755b6207-61b98f575776b547-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7a23cc678c67f8bea6d7fcaeff39d88", + "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": "3", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen.", + "language": "es" + } + ] + }, + "tasks": { + "entityLinkingTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizeLinkedEntities" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "69d96b7a-a4b2-4bf3-9dae-10203ecd9de8", + "Date": "Mon, 25 Oct 2021 21:22:08 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "215" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e6a41ab9a36538db2856c07a9e32f07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "141b3014-0a5c-4948-ba33-5ebd3e032a07", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22: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": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:09Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a5f1f468abb8d3c9e7e25fe2bb3ffe0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ec696670-89bc-4d04-8461-ba93fa46e90c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22: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": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:09Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "480cfa2e5ce12b78af4ef5400b83d606", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "776a82d8-e9c3-4db7-b610-e56a302287e2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22: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": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:09Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d084783e739320cc04dcffb8758e28fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "414e2a16-c4c5-45d6-96d9-c64c053605e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22: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": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:09Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aed98c86e7d7ea25a6347a6c94fb821b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "abd69572-22de-4a30-b666-72bed98d8a12", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:09Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2c01ea72e2fba4d2deb43045cbfb520", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c5d197c3-84a6-4c82-a0cc-a574dc9a0349", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22: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": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:15Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fbaf62527aa562f529a295ff85f8c09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8231200d-6b0b-47b7-a6fa-3b699260914e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:17 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": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:15Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5710e45a76ce57cf3f1e81eba3218ee6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4cf8733-3071-46cb-aef9-b5e170be561d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:18 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": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:18Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:18.8304021Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d47597e03418070ef695f9504eec1cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af9d821f-166f-4a22-aa6a-fe24e5aa9a59", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "118" + }, + "ResponseBody": { + "jobId": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:18Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:18.8304021Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77aa3a5f5eaeaf522763408ba644b331", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6fa03ca8-1566-4fb7-bd75-30833b9974a5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "200" + }, + "ResponseBody": { + "jobId": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:18Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:18.8304021Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ee0420bee1857c77490676416395251", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a9abcbd4-ba4e-4b00-be60-0b2809cd3dce", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "525" + }, + "ResponseBody": { + "jobId": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:18Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:18.8304021Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "698bb35d16771f38079776dec2e5d9ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7ff88fcb-d420-4a17-a517-4ef57f23b257", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:25 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": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:18Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:18.8304021Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2892db6220d71b47252031df7ed99ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7ccb112d-d3c0-4813-9582-cf64dae16b20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "115" + }, + "ResponseBody": { + "jobId": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:18Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:18.8304021Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f22eef1049b8f5ba0ac0978178e9948f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8c7d3910-4e9f-4307-b738-3e60ee3286c3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2234" + }, + "ResponseBody": { + "jobId": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:18Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:18.8304021Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64464be8-4728-43af-894b-7e3ad584d9a4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8aebcb790b03a43fe19f624131a2819", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b665a11b-6f8f-4435-9c45-d64439d67076", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" + }, + "ResponseBody": { + "jobId": "64464be8-4728-43af-894b-7e3ad584d9a4", + "lastUpdateDateTime": "2021-10-25T21:22:31Z", + "createdDateTime": "2021-10-25T21:22:09Z", + "expirationDateTime": "2021-10-26T21:22:09Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:18.8304021Z", + "taskName": "RecognizeLinkedEntitiesWithDisabledServiceLogs", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:22:31.8705296Z", + "taskName": "RecognizeLinkedEntities", + "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": "3", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "0d47c987-0042-5576-15e8-97af601614fa", + "name": "Bill Gates", + "matches": [ + { + "text": "Bill Gates", + "offset": 26, + "length": 10, + "confidenceScore": 0.37 + } + ], + "language": "es", + "id": "Bill Gates", + "url": "https://es.wikipedia.org/wiki/Bill_Gates", + "dataSource": "Wikipedia" + }, + { + "bingId": "df2c4376-9923-6a54-893f-2ee5a5badbc7", + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 39, + "length": 10, + "confidenceScore": 0.9 + } + ], + "language": "es", + "id": "Paul Allen", + "url": "https://es.wikipedia.org/wiki/Paul_Allen", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "3", + "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" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "414547090", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index e19d20896379..51a192b04b8c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e97b8bfde18584ea028e15cc32afca6-0fca130d01530647-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-7f43eb1fbc88b64786d339a1f5ab62d3-19d6b18f5350284c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "4f9f78c612dc4ff4e6424ecbf4774e1d", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b63f104-3eb7-49a5-ae91-54851fdb65a4", + "apim-request-id": "16a657e1-0aed-41cd-891e-66d7b7c5a4a2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:31 GMT", + "Date": "Mon, 25 Oct 2021 21:22:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "documents": [ @@ -112,6 +118,6 @@ "Variables": { "RandomSeed": "1132826820", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index 19af5d83fc0f..6d8ad159acd5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5353a9cfb66ed74085bc160f8daef400-7dfbd2cba222a442-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-01fc5f4414533f47bfecdecc87b6dc92-6f7d975d389eed44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "36b692faddb1a4a1de76fbe750ec63aa", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b891f444-05ec-47bc-80d8-d2a0f0066260", + "apim-request-id": "825f76ec-5d25-480e-943c-20b2afd56de8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ @@ -112,6 +118,6 @@ "Variables": { "RandomSeed": "1683535825", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index 1441a9197018..cd7b69ab1218 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4b4892f05bf98340b4aa7be750ae14ce-1b1fc40e4013e24e-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-6294a91795c0cd40bdbd8ef1293fb91a-56dd79a815de6046-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "04ded076a7d1ef20d826d8bd22d2f313", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a08a24cb-237a-459f-8885-54c583bfb758", + "apim-request-id": "75ae45f6-7a5b-4832-9c4a-84b846bd5a4d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:31 GMT", + "Date": "Mon, 25 Oct 2021 21:22:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "statistics": { @@ -126,6 +132,6 @@ "Variables": { "RandomSeed": "706747963", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index a8b65c221eff..be7200c462ec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-81bf921556fb1c4c859e75183810e388-a1ab656f78af9c4d-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-91c51e0bb3d26243a287a74da4291330-035952cf85e0e543-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "7d30af30e956cc708b0d87dfbe6db16a", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47377a53-451d-49be-a87c-51f9412e769d", + "apim-request-id": "2e9e86cf-5d15-43a2-b2d8-5a5bee5b2860", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "statistics": { @@ -126,6 +132,6 @@ "Variables": { "RandomSeed": "1608660746", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index ba0d0b292dcc..5e97dc0b87ce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7be1ce8306c8dc43b1bd8ec4c954157f-969f676f79e62240-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-f45bc5b6cbea4a409f9e09365e78233a-bd5afe3543290740-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "6f9cd824ddbc141e7abad022a25067fc", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f3aa8d5-4e37-4312-8cb8-f90a2871f982", + "apim-request-id": "baba5a84-56ca-494c-aae0-072915270b9a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:31 GMT", + "Date": "Mon, 25 Oct 2021 21:22:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "documents": [ @@ -112,6 +118,6 @@ "Variables": { "RandomSeed": "318022589", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index 77d77d16f2ed..d119b44f4ddf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9a2c64d5d2ad304ba9f0c71a8591b3da-4ebf824d4a5fc940-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-841ce001350cf04a849e1c345c535e0d-aa3b987943fe3743-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "d3c06bb4da2c08c1ac14eaea49cdb0bb", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f79831cd-a383-47f6-a502-9531eb10dfb9", + "apim-request-id": "93a95c27-8cf5-4f10-9690-0722b616693c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "documents": [ @@ -112,6 +118,6 @@ "Variables": { "RandomSeed": "1062926168", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWitCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWitCategoryTest.json index 671b791c2c57..6fcdf80d48ba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWitCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWitCategoryTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-925f39ea63ffdb44b2daf357d9ecc032-ef2eab6e3d34bb4a-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-22fcec8f2636e74483c300c593e47c0b-370b75b904bd364a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "940d68c3ae74cfe85a8c9b6ff397927c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "771b7f1f-05c1-418a-ac3c-4dbd6e6cfcc5", + "apim-request-id": "a81b4f1b-3e1b-4db8-bfb5-cbc151fa2ba5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:31 GMT", + "Date": "Mon, 25 Oct 2021 21:22:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "documents": [ @@ -77,6 +83,6 @@ "Variables": { "RandomSeed": "1827281013", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWitCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWitCategoryTestAsync.json index 91f879feea33..74b917a0223a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWitCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWitCategoryTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7bc249e7964bac4f891a43f758097bcd-901739ebd6753349-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-2e0d4915cd467d408d9e080b97a8ad12-76274b449d9df041-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "be97255b3654fe9185dbe071fa756db5", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec1b7221-95ba-4568-9b37-26ccadd64360", + "apim-request-id": "70a21c4b-7294-417b-a890-7c1b1a0e2eda", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "documents": [ @@ -77,6 +83,6 @@ "Variables": { "RandomSeed": "1066247175", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithDomainTest.json index 8d850eed94f5..21cbcad76fb3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithDomainTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a766796bd3d4014e96299988a67de263-ee88844d581b3045-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-e814497bfb9bff4f895802faddeed149-cc8f98dec8a2b544-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "9567a6ab75c1c0186e6c0910f26b92ac", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f31bd19-0da4-490d-8379-08cec8fe13f5", + "apim-request-id": "e9ba110f-2e69-4c7f-bf6b-1640546e388e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:31 GMT", + "Date": "Mon, 25 Oct 2021 21:22:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "documents": [ @@ -105,6 +111,6 @@ "Variables": { "RandomSeed": "211350078", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithDomainTestAsync.json index f3c7dd26fbef..25903d071d6d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithDomainTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b1908696bcec3d4ba0c7b5e39841550a-d321ab2193b14646-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-20f95a86f23eb248af960257f4c7f9f9-0fe3e8872ae58d43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "ad760dfb47a56942a81a4fab59b3d969", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "80bb8878-c41d-4e5c-a909-767d34196655", + "apim-request-id": "f2a5a92a-4c2e-444f-b27d-450f2e7f36b6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "documents": [ @@ -105,6 +111,6 @@ "Variables": { "RandomSeed": "946759567", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 818b239afe60..4f0808370ea0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-82d152a3e58c5b4f9efe065b967da56e-7577a8189e0f3547-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-7b5fba4cc571bf4cb74baa79969ed5b1-d3ca70a8ded5264b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "e382b2e96bf3675f4d7d7960b8b32916", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ccd0af3-af62-4797-b2cd-53f451a44460", + "apim-request-id": "3aeb195b-9573-479e-9b05-e8b5960588df", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:32 GMT", + "Date": "Mon, 25 Oct 2021 21:22:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "documents": [ @@ -122,6 +128,6 @@ "Variables": { "RandomSeed": "239145501", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index 8145fc7fc1d4..b04731ae0dd8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bf9f1273fa8ec04da51070d6076f9b3f-05db90c93b00b84e-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-a446c72404565d4a8ef76cd5b90ea838-6a06fe1f582f884f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "e218864f9605e01c86941869a0be6841", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8efdf6b-09fd-4593-ac41-a73ee92fcead", + "apim-request-id": "a4e37a26-99ec-4da5-8572-4327e65cb94a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:34 GMT", + "Date": "Mon, 25 Oct 2021 21:22:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "documents": [ @@ -122,6 +128,6 @@ "Variables": { "RandomSeed": "1607409987", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json index b27384ecb093..0abcf76a08ab 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f29f92f960a7de4a8e0d3c69c40ae052-dc55facae8b2bc48-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-b3e4e41edd08a5419dd0f6a69a6aea88-0b15edf25600a342-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "31f09c56057d756e3c532a93aa2edb35", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "299eadcf-1cee-4a15-b03d-7f6466cf4983", + "apim-request-id": "c2f071b4-9eed-4a5f-a129-432d47b98bf5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:32 GMT", + "Date": "Mon, 25 Oct 2021 21:22:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "statistics": { @@ -126,6 +132,6 @@ "Variables": { "RandomSeed": "1531046284", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index 759aa48dc327..feeca9451446 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-db053a869dbeb24ca0c26fdc1d5e089f-3543839c72c7854c-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-b23af0c766f37840a79b85a708a72f42-0a1a90c1025e054d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "f7aa1943432514c18c4fe7b77ff7d7b3", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1dcdf02c-438e-4dbe-8cf8-34452da85f10", + "apim-request-id": "b6f37b95-12cf-4523-ba58-6697d8d48ec2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 06 Aug 2021 01:54:34 GMT", + "Date": "Mon, 25 Oct 2021 21:22:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "statistics": { @@ -126,6 +132,6 @@ "Variables": { "RandomSeed": "217523161", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index 044ebac96e8f..c02b6b6ed5e1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3928e4fe4f8b4543ba90417fc2821cb0-c26673f99fb67043-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-d5be80e7764e2b4896295970d836364e-785342f5929cbb4a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "6655a12d207207ee0d1a26c668ed96aa", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9e8ffb7-0b5b-4880-ba19-c11a5f88a988", + "apim-request-id": "007018f2-742c-4f34-aa71-77cd562012fa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:32 GMT", + "Date": "Mon, 25 Oct 2021 21:22:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "documents": [ @@ -79,6 +85,6 @@ "Variables": { "RandomSeed": "1336683597", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index 42d8d88f0dd1..319e615a2bc9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9e645f1fc6da0042943a6c0479687431-2c140f05f920c64e-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-ae606985fcbfd8458e2f1d0cc3ad1aff-38b27d20b0e9da42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "e99c33afa9dbd2d0544e5c85269125b4", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ed8065a-2140-4a3d-a66f-0ee4ca9371db", + "apim-request-id": "2d33018e-323c-4c71-9957-bf8e5ca000d8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:34 GMT", + "Date": "Mon, 25 Oct 2021 21:22:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ @@ -79,6 +85,6 @@ "Variables": { "RandomSeed": "135557149", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTest.json index 089a666f6f07..17bb75b38dd4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "175", "Content-Type": "application/json", - "traceparent": "00-3a013b5c92dba045abec934627e0825a-00ad4760194b2841-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-5695c2710e8d7048aa92dead6001f2d5-ab8a6656bc03ef48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37b0c405e8fb2bfa7000c61a49129f9e", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c60236ba-693c-43d8-8b18-e6bfb26144e1", + "apim-request-id": "eb51c2c8-0c31-441b-9ff8-28db3d23de95", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:32 GMT", + "Date": "Mon, 25 Oct 2021 23:04:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ @@ -78,6 +78,6 @@ ], "Variables": { "RandomSeed": "1074536764", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTestAsync.json index f3c2d2e1b866..e068b32adb1f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithAADTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", "Content-Length": "175", "Content-Type": "application/json", - "traceparent": "00-4bf01024e5224f4db5ebca796edad456-7cd0d8bd8178bb47-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-0b108408d97c0c49bdf9eb74b739a4f8-0ef50a57c65c0d4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "66cf91a593c37d4ee57b52513ba42d19", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "435a1b3f-3b6c-4183-8a94-fc2ea24ac531", + "apim-request-id": "93156f0c-c259-4d82-9992-767d3cc957a3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:34 GMT", + "Date": "Mon, 25 Oct 2021 23:04:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ @@ -78,6 +78,6 @@ ], "Variables": { "RandomSeed": "397872095", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithCategoriesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithCategoriesTest.json index 3d9fb1c3dfa9..6786469f081d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithCategoriesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithCategoriesTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4e8ceeacc8046348ab6bbe384d8481d7-6197d9814ab78f43-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-4af3a9ada81e594cb3459a5a1c472bbb-053d2aa29e622242-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "7c04cf67d0469f658d548aa093280fca", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38697e8a-aa93-4ada-9ac3-3eadf8804e05", + "apim-request-id": "83b0f43d-ffe4-4893-b7ea-6ea23292ae20", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "documents": [ @@ -55,15 +61,21 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-988cdcfcee0bd14e89aec6412ea61b96-d5f217d9cc77ea4d-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-dc898ae1ab95b14583b5e438dfdd0ae1-ebfc2ba270697d40-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "5588c72a1f79c7b0129221fabf58dffc", "x-ms-return-client-request-id": "true" }, @@ -78,14 +90,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d4471f0-c5f1-4c86-a46d-7e649898f57b", + "apim-request-id": "0a6adde2-02a7-4edd-930e-2853b77c4364", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "documents": [ @@ -116,15 +128,21 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=ABARoutingNumber", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=ABARoutingNumber", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bc6de1fc5ff9c845a7a71d801aab23c4-260852070b33624a-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-bee503c95c6c564d924c1f0df423c476-6d329057a8ff3d45-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "6dc331865856b414eb9bcb80f46e6158", "x-ms-return-client-request-id": "true" }, @@ -139,14 +157,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c81b411-c844-471b-b9a6-3e8c2f306164", + "apim-request-id": "761a25c5-b32f-4f97-a931-e5a82cb2e10d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "documents": [ @@ -165,6 +183,6 @@ "Variables": { "RandomSeed": "1700870585", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithCategoriesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithCategoriesTestAsync.json index a24256597ff5..72bae6e88a63 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithCategoriesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithCategoriesTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d8522c64e6087f4bbe9d03cfc0175ca5-fe32749ae3db2e4c-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-bd13d807dac9164c966a13e6bb018485-586e04b70f9f194a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "fc3e2e1d014a16e930b2baccef70bd87", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0972b84-eccf-4554-9ff0-233004c79a83", + "apim-request-id": "775f5c76-ea69-4c74-97e7-910069934a65", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:34 GMT", + "Date": "Mon, 25 Oct 2021 21:22:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ @@ -55,15 +61,21 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0859bc09377f5c4c9727c3614769a746-05dc319af7ebf54e-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-6d7b77a68e439746a2f648eb1fdcede0-31399d07fe46b243-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "f47f8dfecab159d3b57419d3b00cf4bf", "x-ms-return-client-request-id": "true" }, @@ -78,14 +90,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b94685b-5ad7-4aae-87fc-a4a4147f2534", + "apim-request-id": "73a5b77f-0e68-4d5d-9dee-0fc36cd64e06", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:34 GMT", + "Date": "Mon, 25 Oct 2021 21:22:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ @@ -116,15 +128,21 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=ABARoutingNumber", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=ABARoutingNumber", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f157eaf6e061b4a8aaf595c3ba77cc2-71aa0ccca2dd7d4c-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-2b72a8ec4c9f5343800d4e2a41fd50d7-0f28893e79b67744-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "6fb8769d2a4111b2f0ea31dcd0af3166", "x-ms-return-client-request-id": "true" }, @@ -139,14 +157,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce477d27-63fe-46c9-9c22-3eeb7760a007", + "apim-request-id": "0ebe719c-f248-449c-9549-d5b74b51217d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:34 GMT", + "Date": "Mon, 25 Oct 2021 21:22:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "documents": [ @@ -165,6 +183,6 @@ "Variables": { "RandomSeed": "462222541", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index bb2da856ad56..947f3e9f44d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5b826b18fd29b14392c44414c507dde4-00ad13db658f7848-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-32e0c205902e044f93e9434832922106-1952b96c1138f141-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "5757e3544f245670b8a4c82d4b10bc4c", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6eb9699d-58b7-47b0-9fab-9969d5cfac54", + "apim-request-id": "c1cbdd2e-e541-4ac0-bdab-ba9d1f8a6cdc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:37 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": "32" }, "ResponseBody": { @@ -44,7 +50,7 @@ "category": "Organization", "offset": 10, "length": 9, - "confidenceScore": 0.94 + "confidenceScore": 0.93 }, { "text": "atest@microsoft.com", @@ -65,6 +71,6 @@ "Variables": { "RandomSeed": "114454170", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index c8992599edc0..3ffb7dfdd64d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-54680d3a2f1bd24cb05787714d74e560-047c47bb024ecb4a-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-6f8cc352ecb87d498ebe4c9c471f77d7-23e066d3f9812b4f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "4a37fade57ea6b5a5ff8ab22891b6b20", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8cb32d0f-cf08-4320-84fc-6e9bfd98c527", + "apim-request-id": "988214e4-b4f3-44ee-b3b3-4c21731ad169", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:35 GMT", + "Date": "Mon, 25 Oct 2021 21:22:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ @@ -44,7 +50,7 @@ "category": "Organization", "offset": 10, "length": 9, - "confidenceScore": 0.94 + "confidenceScore": 0.93 }, { "text": "atest@microsoft.com", @@ -65,6 +71,6 @@ "Variables": { "RandomSeed": "820241717", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index e0dcf744972d..4afad4aefb69 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-92eeb0b48c184349aa0c029e4fb976fb-6cf288af0a298c48-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-e30806de8224d340bac309fe993c3d56-5e7351159c6c7b4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "b9843303f5caf9234c54041b46d95b45", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "604dd8bf-4732-4128-afdd-9c5350013b66", + "apim-request-id": "0439331f-9c50-4ea2-a6e4-e5785d4e7421", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "documents": [ @@ -79,6 +85,6 @@ "Variables": { "RandomSeed": "1421220879", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index 0f8614c449c8..b51a2becd83a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4da3a02bb3a9a04a93a6b58f9c19fb29-56e6a534e5c1b34c-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-f665c79d263bca4a8a163e394e29af1c-8b69d8b207fdb34a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "f2ea379b57db58a82e503aae4ecdbb11", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ec11813-97bd-49e2-902a-6358c565cbc5", + "apim-request-id": "67d05d58-2638-44f9-983b-8c7959adca35", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:35 GMT", + "Date": "Mon, 25 Oct 2021 21:22:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ @@ -79,6 +85,6 @@ "Variables": { "RandomSeed": "1873378849", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithMultipleActions.json new file mode 100644 index 000000000000..f9886c3d84d3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithMultipleActions.json @@ -0,0 +1,745 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "588", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-99a3d81af5bbf54f8590eff41044dfdd-4d9720b0cd9add46-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71a64eb3d44b2ad9d3eec8afa979abd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs. They work at Microsoft", + "language": "en" + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizePiiEntitiesWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizePiiEntities" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "de9e3ec0-983d-4d14-b008-df77c5c45d5c", + "Date": "Mon, 25 Oct 2021 21:22:38 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9eb4378d-1c0b-4023-b27e-f48743d77e44", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "232" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9eb4378d-1c0b-4023-b27e-f48743d77e44", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0f83f6ccaae3c668e95979f3babb254", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fe2a494e-c9e0-4a7f-83ff-94d168d42947", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22: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": "9eb4378d-1c0b-4023-b27e-f48743d77e44", + "lastUpdateDateTime": "2021-10-25T21:22:39Z", + "createdDateTime": "2021-10-25T21:22:38Z", + "expirationDateTime": "2021-10-26T21:22:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9eb4378d-1c0b-4023-b27e-f48743d77e44", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d595b2e2f0096ee74252e6600eb4920c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cdd8c444-78c6-4b21-a9d6-f505f1c2b651", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "9eb4378d-1c0b-4023-b27e-f48743d77e44", + "lastUpdateDateTime": "2021-10-25T21:22:39Z", + "createdDateTime": "2021-10-25T21:22:38Z", + "expirationDateTime": "2021-10-26T21:22:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9eb4378d-1c0b-4023-b27e-f48743d77e44", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83ba0843ec14e9cbe86ae2b53c3aef27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "82529df8-3f9f-4c54-9a74-5c0c47fb4f24", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22: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": "9eb4378d-1c0b-4023-b27e-f48743d77e44", + "lastUpdateDateTime": "2021-10-25T21:22:41Z", + "createdDateTime": "2021-10-25T21:22:38Z", + "expirationDateTime": "2021-10-26T21:22:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9eb4378d-1c0b-4023-b27e-f48743d77e44", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7cc733cd5e47bcb588a8d5be3062dda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bebe5cb4-21e5-41c7-9ddf-d81abc759051", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "jobId": "9eb4378d-1c0b-4023-b27e-f48743d77e44", + "lastUpdateDateTime": "2021-10-25T21:22:41Z", + "createdDateTime": "2021-10-25T21:22:38Z", + "expirationDateTime": "2021-10-26T21:22:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:41.6412119Z", + "taskName": "RecognizePiiEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9eb4378d-1c0b-4023-b27e-f48743d77e44", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "325b8b032ff1f540e7abed9e0e313108", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3de79290-0134-4c62-89a5-4d617d57a953", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "147" + }, + "ResponseBody": { + "jobId": "9eb4378d-1c0b-4023-b27e-f48743d77e44", + "lastUpdateDateTime": "2021-10-25T21:22:41Z", + "createdDateTime": "2021-10-25T21:22:38Z", + "expirationDateTime": "2021-10-26T21:22:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:41.6412119Z", + "taskName": "RecognizePiiEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9eb4378d-1c0b-4023-b27e-f48743d77e44", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a23bf639be76d273d3f2b895f6f06e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c61b609d-4a6f-48f6-aca0-4bf9c52ed74b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2484" + }, + "ResponseBody": { + "jobId": "9eb4378d-1c0b-4023-b27e-f48743d77e44", + "lastUpdateDateTime": "2021-10-25T21:22:44Z", + "createdDateTime": "2021-10-25T21:22:38Z", + "expirationDateTime": "2021-10-26T21:22:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:41.6412119Z", + "taskName": "RecognizePiiEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/9eb4378d-1c0b-4023-b27e-f48743d77e44", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1b2083cbcde0c3633d70f38e82c6d26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b2c6abf1-7c6b-40f8-8116-2eb3d6bfea80", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:48 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": "9eb4378d-1c0b-4023-b27e-f48743d77e44", + "lastUpdateDateTime": "2021-10-25T21:22:48Z", + "createdDateTime": "2021-10-25T21:22:38Z", + "expirationDateTime": "2021-10-26T21:22:38Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:48.3196378Z", + "taskName": "RecognizePiiEntitiesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:22:41.6412119Z", + "taskName": "RecognizePiiEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1341045357", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithMultipleActionsAsync.json new file mode 100644 index 000000000000..9500f405fd28 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithMultipleActionsAsync.json @@ -0,0 +1,703 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "588", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-a8ab7a84df7420469ba9fe7ec6cb2b07-d6a12d5bf4bfe041-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "821d40e471b4a3a79e7730ad4fc1c667", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs. They work at Microsoft", + "language": "en" + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "loggingOptOut": true, + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizePiiEntitiesWithDisabledServiceLogs" + }, + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "RecognizePiiEntities" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "46f3f301-62ca-42d7-a9f9-d264719571f1", + "Date": "Mon, 25 Oct 2021 21:22:54 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "471" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3419f09bc4750833caf320105774bf56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42f87230-8351-4c05-a0b0-9150ecea22ed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:54 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": "7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "lastUpdateDateTime": "2021-10-25T21:22:55Z", + "createdDateTime": "2021-10-25T21:22:54Z", + "expirationDateTime": "2021-10-26T21:22:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccb4ad560783f76c8e420bc524d6420d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9d315e03-adee-4eaf-84db-f9146d487e23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22: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": "7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "lastUpdateDateTime": "2021-10-25T21:22:55Z", + "createdDateTime": "2021-10-25T21:22:54Z", + "expirationDateTime": "2021-10-26T21:22:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93b51ac3ab9a20fa0c15b7c151974c2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4032243-6544-436b-a810-46bcee23bc04", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:22:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1443" + }, + "ResponseBody": { + "jobId": "7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "lastUpdateDateTime": "2021-10-25T21:22:58Z", + "createdDateTime": "2021-10-25T21:22:54Z", + "expirationDateTime": "2021-10-26T21:22:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:58.0726546Z", + "taskName": "RecognizePiiEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a157d9b8fa0d93e38321a533b96ee3f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "714ac35c-c1e7-4a56-9b08-eb0c7e005a4c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:23:01 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": "7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "lastUpdateDateTime": "2021-10-25T21:23:01Z", + "createdDateTime": "2021-10-25T21:22:54Z", + "expirationDateTime": "2021-10-26T21:22:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:58.0726546Z", + "taskName": "RecognizePiiEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d4d12b02bbfabbbb294c06e50aba5f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ab221c35-d4f9-47aa-b021-80f86122c7c5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:23:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "197" + }, + "ResponseBody": { + "jobId": "7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "lastUpdateDateTime": "2021-10-25T21:23:01Z", + "createdDateTime": "2021-10-25T21:22:54Z", + "expirationDateTime": "2021-10-26T21:22:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:22:58.0726546Z", + "taskName": "RecognizePiiEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b0de0f6a17fc9003621107905c7669e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2e21d1f7-7303-43ed-8bda-2182914bff3e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 21:23:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9407" + }, + "ResponseBody": { + "jobId": "7647c58b-6e1b-4a7e-a1b3-2d4b10c16819", + "lastUpdateDateTime": "2021-10-25T21:23:02Z", + "createdDateTime": "2021-10-25T21:22:54Z", + "expirationDateTime": "2021-10-26T21:22:54Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-10-25T21:23:02.9596521Z", + "taskName": "RecognizePiiEntitiesWithDisabledServiceLogs", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2021-10-25T21:22:58.0726546Z", + "taskName": "RecognizePiiEntities", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", + "id": "1", + "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "PhoneNumber", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + }, + { + "text": "Microsoft", + "category": "Organization", + "offset": 114, + "length": 9, + "confidenceScore": 0.96 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1062600152", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTest.json index f30d55016e5f..339325dd8243 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTest.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-968d8b929900fd49964489bc2d17bc91-d7dc4ed0cae8cb46-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-50b10b0f03d7534f881410ac7cf6d613-993c63d9287d9644-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "d9aef1826ce78273f6e9f7d4bb40d2b3", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f8fbd4e-01dd-46ea-bc9a-95963d0179a7", + "apim-request-id": "2918920a-b553-4ada-90ad-d846d7c85ffd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22: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": "39" }, "ResponseBody": { @@ -76,15 +82,21 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PersonType%2CUSSocialSecurityNumber%2CPhoneNumber%2COrganization", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PersonType%2CUSSocialSecurityNumber%2CPhoneNumber%2COrganization", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fbda709da9714842913df0703c87e340-66dd44ce108ba94c-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-59ef6089e7b4d445b2520bfdc4df4430-70b63b54f124044a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "420a306f7cc82f4e5752f38f4114f2d3", "x-ms-return-client-request-id": "true" }, @@ -99,14 +111,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50df255a-1c59-44a8-8aad-64012c03c8b0", + "apim-request-id": "4927ad2c-d323-4632-adec-b4b21f0fabd4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:33 GMT", + "Date": "Mon, 25 Oct 2021 21:22:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "documents": [ @@ -154,6 +166,6 @@ "Variables": { "RandomSeed": "1230179199", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTestAsync.json index fa71af070684..ef4db3024867 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTestAsync.json @@ -1,15 +1,21 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7aed81b01e93014b916ddff78b23f4ad-24114f0d5b562b42-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-4394cdb88030244b99329f1236b07ff9-c2c2736dae16ee44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "e02262f6cfb69307bfbaa46848a55889", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d2bd9bc-be5f-4407-8143-841298538aa5", + "apim-request-id": "74d069a3-4e3f-48ab-bef1-24d91a977a39", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:35 GMT", + "Date": "Mon, 25 Oct 2021 21:23:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ @@ -76,15 +82,21 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PersonType%2CUSSocialSecurityNumber%2CPhoneNumber%2COrganization", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PersonType%2CUSSocialSecurityNumber%2CPhoneNumber%2COrganization", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dc57f6a963724e4aa9b17d939f6fe6f2-c9ca12227b5d604a-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-159cb2e3f49e884abc6f6ab90cc869d4-6f406ac086305340-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "00989c492da9011d6ac87cc8741ed5c9", "x-ms-return-client-request-id": "true" }, @@ -99,14 +111,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a16cdc08-c2fa-4c0c-80b9-02893c02136e", + "apim-request-id": "0da42c67-c20e-40c6-98d8-427200ab2add", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 06 Aug 2021 01:54:35 GMT", + "Date": "Mon, 25 Oct 2021 21:23:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "documents": [ @@ -154,6 +166,6 @@ "Variables": { "RandomSeed": "298290517", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..cac120fbe284 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceTest.json @@ -0,0 +1,163 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-2e956406d37e0d4887dbd5c017ee9223-56788359788ab64c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "7d9a3ebc-d0fe-4ce5-9e2a-ea44c0d11415", + "Date": "Mon, 25 Oct 2021 23:44:34 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddddd1c1-43a0-41ab-98e7-f456739417e0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "262" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddddd1c1-43a0-41ab-98e7-f456739417e0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "39266c37-665e-48ec-9b4a-5fe849741ceb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:34 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": "ddddd1c1-43a0-41ab-98e7-f456739417e0", + "lastUpdateDateTime": "2021-10-25T23:44:34Z", + "createdDateTime": "2021-10-25T23:44:34Z", + "expirationDateTime": "2021-10-26T23:44:34Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ddddd1c1-43a0-41ab-98e7-f456739417e0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "43665ce5-464b-47b4-8e56-881e9562b989", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:35 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": "ddddd1c1-43a0-41ab-98e7-f456739417e0", + "lastUpdateDateTime": "2021-10-25T23:44:35Z", + "createdDateTime": "2021-10-25T23:44:34Z", + "expirationDateTime": "2021-10-26T23:44:34Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:35.5467012Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..7dec98054ae8 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceTestAsync.json @@ -0,0 +1,163 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-4d0af20135e3574ba5503a7f9e06dc36-efbf6025bf81874e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "a26623cf-2704-40dc-9a4d-ef25e4366b2f", + "Date": "Mon, 25 Oct 2021 23:44:47 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/aa90f49d-69ae-415d-9b7f-c6465a6c2b3b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "274" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/aa90f49d-69ae-415d-9b7f-c6465a6c2b3b", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "0122d7f2-9147-4de5-a93c-35791f54c4d5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "aa90f49d-69ae-415d-9b7f-c6465a6c2b3b", + "lastUpdateDateTime": "2021-10-25T23:44:48Z", + "createdDateTime": "2021-10-25T23:44:47Z", + "expirationDateTime": "2021-10-26T23:44:47Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/aa90f49d-69ae-415d-9b7f-c6465a6c2b3b", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "cb1312f5-a4e1-4ff7-8776-a99036e0b150", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "673" + }, + "ResponseBody": { + "jobId": "aa90f49d-69ae-415d-9b7f-c6465a6c2b3b", + "lastUpdateDateTime": "2021-10-25T23:44:48Z", + "createdDateTime": "2021-10-25T23:44:47Z", + "expirationDateTime": "2021-10-26T23:44:47Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:48.8360498Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..dc9dbc607746 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceWithStatisticsTest.json @@ -0,0 +1,177 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-c82d0c11414b3f4197aac9186808a276-0085c2e7ed81cc47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "dbeb874a-56af-4edd-beef-c52c20da1175", + "Date": "Mon, 25 Oct 2021 23:44:35 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ac4836f1-91a4-40ff-913c-e342f0017a99", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ac4836f1-91a4-40ff-913c-e342f0017a99?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.20211025.1 (.NET Framework 4.8.4300.0; 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": "7541c12b-0069-4660-9082-9aee39e5e15c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "ac4836f1-91a4-40ff-913c-e342f0017a99", + "lastUpdateDateTime": "2021-10-25T23:44:35Z", + "createdDateTime": "2021-10-25T23:44:35Z", + "expirationDateTime": "2021-10-26T23:44:35Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/ac4836f1-91a4-40ff-913c-e342f0017a99?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.20211025.1 (.NET Framework 4.8.4300.0; 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": "db4a1dd7-055e-4d6d-942a-358462fc27b3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "554" + }, + "ResponseBody": { + "jobId": "ac4836f1-91a4-40ff-913c-e342f0017a99", + "lastUpdateDateTime": "2021-10-25T23:44:37Z", + "createdDateTime": "2021-10-25T23:44:35Z", + "expirationDateTime": "2021-10-26T23:44:35Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:37.0105894Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..068e7b53e16c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchConvenienceWithStatisticsTestAsync.json @@ -0,0 +1,177 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-81d2e747c1f4164bb2309142183f364b-b8fe88740e54aa4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "e6430cd0-3bd5-4a43-a509-937da2494074", + "Date": "Mon, 25 Oct 2021 23:44:50 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64ee7c4d-3aaa-4a1e-9cf0-4ddbf60010c3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "434" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64ee7c4d-3aaa-4a1e-9cf0-4ddbf60010c3?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.20211025.1 (.NET Framework 4.8.4300.0; 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": "b7be328b-83e2-42c8-81dd-112700c2945b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "64ee7c4d-3aaa-4a1e-9cf0-4ddbf60010c3", + "lastUpdateDateTime": "2021-10-25T23:44:50Z", + "createdDateTime": "2021-10-25T23:44:50Z", + "expirationDateTime": "2021-10-26T23:44:50Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/64ee7c4d-3aaa-4a1e-9cf0-4ddbf60010c3?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.20211025.1 (.NET Framework 4.8.4300.0; 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": "a9c08fec-6719-41d3-9f20-b54423293f68", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:51 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": "64ee7c4d-3aaa-4a1e-9cf0-4ddbf60010c3", + "lastUpdateDateTime": "2021-10-25T23:44:50Z", + "createdDateTime": "2021-10-25T23:44:50Z", + "expirationDateTime": "2021-10-26T23:44:50Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:50.8678109Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..74c1ae331f51 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchTest.json @@ -0,0 +1,163 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-36d198257fb6174e89468d15abcf73f3-a822d1a0f1f98342-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "fc1007c4-b6b4-447e-9775-7f6b53a2588a", + "Date": "Mon, 25 Oct 2021 23:44:37 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/edd29778-bf2a-4d76-9ef6-cb0c597823e1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "273" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/edd29778-bf2a-4d76-9ef6-cb0c597823e1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "ae950035-2162-48ef-8c3c-9c8392de0df0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "edd29778-bf2a-4d76-9ef6-cb0c597823e1", + "lastUpdateDateTime": "2021-10-25T23:44:37Z", + "createdDateTime": "2021-10-25T23:44:37Z", + "expirationDateTime": "2021-10-26T23:44:37Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/edd29778-bf2a-4d76-9ef6-cb0c597823e1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "406dc941-0876-4e70-bf10-94d8a25dbe58", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:38 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": "edd29778-bf2a-4d76-9ef6-cb0c597823e1", + "lastUpdateDateTime": "2021-10-25T23:44:38Z", + "createdDateTime": "2021-10-25T23:44:37Z", + "expirationDateTime": "2021-10-26T23:44:37Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:38.5106965Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..86ea5c60da95 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchTestAsync.json @@ -0,0 +1,163 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-88357cda35023c47ae2a854d885668bc-1029182b98a6a140-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "bea4a610-7aac-400e-a868-d1a408d9ad24", + "Date": "Mon, 25 Oct 2021 23:44:51 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b45b2d56-8fcd-4f32-b60a-717ce6b982c3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "713" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b45b2d56-8fcd-4f32-b60a-717ce6b982c3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "5bce59e5-fb62-4426-adc5-7db6737744e4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:51 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": "b45b2d56-8fcd-4f32-b60a-717ce6b982c3", + "lastUpdateDateTime": "2021-10-25T23:44:52Z", + "createdDateTime": "2021-10-25T23:44:52Z", + "expirationDateTime": "2021-10-26T23:44:52Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b45b2d56-8fcd-4f32-b60a-717ce6b982c3", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "b16a82ff-eaa5-48de-b1e5-af37841ee967", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "jobId": "b45b2d56-8fcd-4f32-b60a-717ce6b982c3", + "lastUpdateDateTime": "2021-10-25T23:44:52Z", + "createdDateTime": "2021-10-25T23:44:52Z", + "expirationDateTime": "2021-10-26T23:44:52Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:52.883983Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..45ab38cc5c63 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithErrorTest.json @@ -0,0 +1,167 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-4df437af18b492489b9e299bdec4eaf5-341588ad8f7f894a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "c7b19302-545b-4336-9f1a-2e030da6a4bd", + "Date": "Mon, 25 Oct 2021 23:44:38 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/72700805-77f7-44e9-ba88-d7527f8df3ab", + "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/72700805-77f7-44e9-ba88-d7527f8df3ab", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "99743dbf-5a6d-4567-8767-eddc99aad2da", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "72700805-77f7-44e9-ba88-d7527f8df3ab", + "lastUpdateDateTime": "2021-10-25T23:44:39Z", + "createdDateTime": "2021-10-25T23:44:39Z", + "expirationDateTime": "2021-10-26T23:44:39Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/72700805-77f7-44e9-ba88-d7527f8df3ab", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "7c5b3ef9-9d41-477d-a5c5-e8a2cef6b588", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:39 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": "72700805-77f7-44e9-ba88-d7527f8df3ab", + "lastUpdateDateTime": "2021-10-25T23:44:39Z", + "createdDateTime": "2021-10-25T23:44:39Z", + "expirationDateTime": "2021-10-26T23:44:39Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:39.7185694Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..5d35a29b37d0 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithErrorTestAsync.json @@ -0,0 +1,167 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-2540800946fcff49b14bf45918840cd4-710a81726b992044-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "0a94dfd4-5cc4-4da6-ac03-3f300333a773", + "Date": "Mon, 25 Oct 2021 23:44:53 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/60124a98-acfa-4258-a331-3d2170833ea1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "140" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/60124a98-acfa-4258-a331-3d2170833ea1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "e6518ea9-84ef-407d-b028-547fdf4ec504", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "60124a98-acfa-4258-a331-3d2170833ea1", + "lastUpdateDateTime": "2021-10-25T23:44:53Z", + "createdDateTime": "2021-10-25T23:44:53Z", + "expirationDateTime": "2021-10-26T23:44:53Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/60124a98-acfa-4258-a331-3d2170833ea1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "7a2216f3-dec1-4425-93f4-87ad4af242bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": { + "jobId": "60124a98-acfa-4258-a331-3d2170833ea1", + "lastUpdateDateTime": "2021-10-25T23:44:53Z", + "createdDateTime": "2021-10-25T23:44:53Z", + "expirationDateTime": "2021-10-26T23:44:53Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:53.8954709Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..5b77a04c07b5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithStatisticsTest.json @@ -0,0 +1,249 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-628f8e8c5c3c2a49a1be25b321d28a4c-a5350bf7af902041-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "0ffa8167-7377-46f8-ab12-edbe4ce512d1", + "Date": "Mon, 25 Oct 2021 23:44:40 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/01fd531e-e631-462c-9fea-910e3d95f7f1", + "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://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/01fd531e-e631-462c-9fea-910e3d95f7f1?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.20211025.1 (.NET Framework 4.8.4300.0; 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": "a0b0ba31-5821-4680-81e2-bd80811c1656", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "01fd531e-e631-462c-9fea-910e3d95f7f1", + "lastUpdateDateTime": "2021-10-25T23:44:40Z", + "createdDateTime": "2021-10-25T23:44:40Z", + "expirationDateTime": "2021-10-26T23:44:40Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/01fd531e-e631-462c-9fea-910e3d95f7f1?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.20211025.1 (.NET Framework 4.8.4300.0; 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": "4efa7483-37bb-47e6-a6de-4a2c9e58751d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "01fd531e-e631-462c-9fea-910e3d95f7f1", + "lastUpdateDateTime": "2021-10-25T23:44:41Z", + "createdDateTime": "2021-10-25T23:44:40Z", + "expirationDateTime": "2021-10-26T23:44:40Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/01fd531e-e631-462c-9fea-910e3d95f7f1?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4347e9b98a4dd5491980e346855569f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a64a8295-2700-4bb1-a409-c4f9173326e6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:42 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": "01fd531e-e631-462c-9fea-910e3d95f7f1", + "lastUpdateDateTime": "2021-10-25T23:44:41Z", + "createdDateTime": "2021-10-25T23:44:40Z", + "expirationDateTime": "2021-10-26T23:44:40Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/01fd531e-e631-462c-9fea-910e3d95f7f1?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0e7fac53966c141b2af1b0ff7865d00d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7068939-f8c7-4800-8441-1391205b7ab4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" + }, + "ResponseBody": { + "jobId": "01fd531e-e631-462c-9fea-910e3d95f7f1", + "lastUpdateDateTime": "2021-10-25T23:44:43Z", + "createdDateTime": "2021-10-25T23:44:40Z", + "expirationDateTime": "2021-10-26T23:44:40Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:43.4950445Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..de3b559658e4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyBatchWithStatisticsTestAsync.json @@ -0,0 +1,177 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-167412c9b4bc184c95d7aa09e848559f-6417f4ac07e69544-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "82c63419-1442-4472-ae20-8ce7ab885c86", + "Date": "Mon, 25 Oct 2021 23:44:54 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5f00ba65-2d98-46f2-ba64-1d71cbf6e696", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5f00ba65-2d98-46f2-ba64-1d71cbf6e696?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.20211025.1 (.NET Framework 4.8.4300.0; 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": "ae80d162-658e-49de-9569-10e57d6f2f7f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23: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" + }, + "ResponseBody": { + "jobId": "5f00ba65-2d98-46f2-ba64-1d71cbf6e696", + "lastUpdateDateTime": "2021-10-25T23:44:55Z", + "createdDateTime": "2021-10-25T23:44:55Z", + "expirationDateTime": "2021-10-26T23:44:55Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5f00ba65-2d98-46f2-ba64-1d71cbf6e696?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.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9ea2f073aaa23c392f3b21b305791374", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bf6eee0c-4f1b-4f7e-bbcd-c4fcb5286a15", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "326" + }, + "ResponseBody": { + "jobId": "5f00ba65-2d98-46f2-ba64-1d71cbf6e696", + "lastUpdateDateTime": "2021-10-25T23:44:55Z", + "createdDateTime": "2021-10-25T23:44:55Z", + "expirationDateTime": "2021-10-26T23:44:55Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:55.9249165Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..3f42fae817dd --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithDisableServiceLogs.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-d44182827c7c50408db396d48d734597-ffe15f47f2d05044-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "3d52f8dd-64f7-424d-973e-d8c1911698dc", + "Date": "Mon, 25 Oct 2021 23:44:43 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6fb2506e-a4e2-4b65-a974-4150c891dcdf", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "625" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6fb2506e-a4e2-4b65-a974-4150c891dcdf", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "250c9917-2628-41bf-bbcf-c861f281d3e1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "6fb2506e-a4e2-4b65-a974-4150c891dcdf", + "lastUpdateDateTime": "2021-10-25T23:44:44Z", + "createdDateTime": "2021-10-25T23:44:44Z", + "expirationDateTime": "2021-10-26T23:44:44Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/6fb2506e-a4e2-4b65-a974-4150c891dcdf", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "24fdf8a2-e695-4311-99e0-2f2d4f16ad6f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "83" + }, + "ResponseBody": { + "jobId": "6fb2506e-a4e2-4b65-a974-4150c891dcdf", + "lastUpdateDateTime": "2021-10-25T23:44:45Z", + "createdDateTime": "2021-10-25T23:44:44Z", + "expirationDateTime": "2021-10-26T23:44:44Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:45.1602562Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ 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..b5ead948741f --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithDisableServiceLogsAsync.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/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-9fa6becffebcb94c98794b75fba415c1-f4c402d2483fa740-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "cdf57c5d-4d75-4d91-8aa1-6444e37acc9e", + "Date": "Mon, 25 Oct 2021 23:44:56 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5e3530ea-a2ea-4f41-82c7-8897b635bb61", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "264" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5e3530ea-a2ea-4f41-82c7-8897b635bb61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "96e0a47d-b423-4c6a-af70-19f977102af0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "5e3530ea-a2ea-4f41-82c7-8897b635bb61", + "lastUpdateDateTime": "2021-10-25T23:44:56Z", + "createdDateTime": "2021-10-25T23:44:56Z", + "expirationDateTime": "2021-10-26T23:44:56Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/5e3530ea-a2ea-4f41-82c7-8897b635bb61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; 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": "e2f6f2c4-1bf3-44c4-8a93-ef66084481a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "5e3530ea-a2ea-4f41-82c7-8897b635bb61", + "lastUpdateDateTime": "2021-10-25T23:44:57Z", + "createdDateTime": "2021-10-25T23:44:56Z", + "expirationDateTime": "2021-10-26T23:44:56Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:57.3015445Z", + "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", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithMultipleActions.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithMultipleActions.json new file mode 100644 index 000000000000..891795e1aca0 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithMultipleActions.json @@ -0,0 +1,201 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "809", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-ded6397e47727e4690d932963bafd560-8bdeb27e52c1754f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b4a18820f5a60d810494d1c30b1a3ae3", + "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 + }, + "taskName": "SingleCategoryClassifyWithDisabledServiceLogs" + }, + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + }, + "taskName": "SingleCategoryClassify" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "d80ef193-b8a2-41aa-8665-0fff3c6fe790", + "Date": "Mon, 25 Oct 2021 23:44:46 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/583ad832-d787-4130-8baf-93490eb69702", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "424" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/583ad832-d787-4130-8baf-93490eb69702", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c750cb4ac189c7d6b678edfe3af1abca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "336d514b-d186-49fc-9828-15e0467c38d6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "583ad832-d787-4130-8baf-93490eb69702", + "lastUpdateDateTime": "2021-10-25T23:44:46Z", + "createdDateTime": "2021-10-25T23:44:46Z", + "expirationDateTime": "2021-10-26T23:44:46Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/583ad832-d787-4130-8baf-93490eb69702", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c298f97c150c3f51b910ea940f04e2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "30cc2ec4-81b2-41f9-84af-b50962a6e500", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:47 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": "583ad832-d787-4130-8baf-93490eb69702", + "lastUpdateDateTime": "2021-10-25T23:44:46Z", + "createdDateTime": "2021-10-25T23:44:46Z", + "expirationDateTime": "2021-10-26T23:44:46Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:46.8873099Z", + "taskName": "SingleCategoryClassifyWithDisabledServiceLogs", + "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" + } + }, + { + "lastUpdateDateTime": "2021-10-25T23:44:46.8134426Z", + "taskName": "SingleCategoryClassify", + "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": "546593598", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithMultipleActionsAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithMultipleActionsAsync.json new file mode 100644 index 000000000000..dcb18dd084b8 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/SingleCategoryClassifyTests/SingleCategoryClassifyWithMultipleActionsAsync.json @@ -0,0 +1,201 @@ +{ + "Entries": [ + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "809", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d892061f3255334fb9b54d508393bba3-b3a33b697edf5d4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d3c6d7105a507aaa935f7f86576ac78b", + "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 + }, + "taskName": "SingleCategoryClassifyWithDisabledServiceLogs" + }, + { + "parameters": { + "project-name": "659c1851-be0b-4142-b12a-087da9785926", + "deployment-name": "659c1851-be0b-4142-b12a-087da9785926" + }, + "taskName": "SingleCategoryClassify" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "f1d84112-2a35-471e-a11e-2f5bad400bfb", + "Date": "Mon, 25 Oct 2021 23:44:57 GMT", + "operation-location": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b1c83d27-dbe7-4fd7-8819-af84f22fdbb5", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "442" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b1c83d27-dbe7-4fd7-8819-af84f22fdbb5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8686274c74a089d6f13ee5d8a6ce13f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a0aedd00-f7cc-436e-81ee-e00dfe101a4b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44: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": "b1c83d27-dbe7-4fd7-8819-af84f22fdbb5", + "lastUpdateDateTime": "2021-10-25T23:44:58Z", + "createdDateTime": "2021-10-25T23:44:58Z", + "expirationDateTime": "2021-10-26T23:44:58Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/analyze/jobs/b1c83d27-dbe7-4fd7-8819-af84f22fdbb5", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0ffa6c06102c270b0b15ff09eaf66f07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "61acb5e6-35da-411f-b5c0-56545f20f735", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 25 Oct 2021 23:44:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "116" + }, + "ResponseBody": { + "jobId": "b1c83d27-dbe7-4fd7-8819-af84f22fdbb5", + "lastUpdateDateTime": "2021-10-25T23:44:59Z", + "createdDateTime": "2021-10-25T23:44:58Z", + "expirationDateTime": "2021-10-26T23:44:58Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2021-10-25T23:44:59.086432Z", + "taskName": "SingleCategoryClassifyWithDisabledServiceLogs", + "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" + } + }, + { + "lastUpdateDateTime": "2021-10-25T23:44:59.1724612Z", + "taskName": "SingleCategoryClassify", + "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": "1415508280", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME": "659c1851-be0b-4142-b12a-087da9785926", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index 6898c8bfcd26..abf07a350fb3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-31cc7d86b86e3e4195753420b66e7548-982346b004667f4a-00", + "traceparent": "00-6b10eba0253d934894dcfd1f23ca1fa4-ae2e2f752dda764e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "2bbb7414e3ce80e03f8df0adf3eb7d0c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "626134c5-4798-4924-ac38-420006650289", + "apim-request-id": "2f87c194-0f90-462e-9a9d-4e374c5925fe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:01 GMT", + "Date": "Mon, 25 Oct 2021 21:23:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "documents": [ @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "1654409937", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index 6b1b642969ca..518f57b1c197 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ac539ee6fd7f714a8e47ec74b0a94734-affcbf7aa5a42c4e-00", + "traceparent": "00-fae5a92312fcdc459d3b7f002e781cae-945f084b854bfb4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "6470d4cf3910c27ceead9bc2cf6c8aa0", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13a547d0-ad9c-4e2d-b834-5705461aafdc", + "apim-request-id": "b43903a0-e7ed-41eb-951b-ecb0510156c2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:01 GMT", + "Date": "Mon, 25 Oct 2021 21:23:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "documents": [ @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "62086103", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json index b7cbbcd6f43b..ad35f2c00938 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d0b781ae4764d245a75cdbaa3ab35df3-05a91c486429224e-00", + "traceparent": "00-6a33fa9f25d66b4785ac68f8139922d1-9c1237a3ee483c49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "31841aab9edddcddb56c91e8fafcead5", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5be764ba-29cf-46dc-9130-7afb7a4fac98", + "apim-request-id": "8dc83c25-38c9-4e49-9b2c-3daf3861ffcd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:01 GMT", + "Date": "Mon, 25 Oct 2021 21:23:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -56,7 +56,7 @@ } }, { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -66,10 +66,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-962f83f6ea4dea4f8ead2ca31357019a-a015d50668639f4a-00", + "traceparent": "00-910c733fed966b42b1b66fac69472de0-2bd3e55181ce424b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "13daa31269993bffe7f19e3dc94f204e", "x-ms-return-client-request-id": "true" @@ -85,10 +85,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "4fccbcc9-1454-445c-b252-3b7328825e70", + "apim-request-id": "b14a062d-386d-4330-ae8a-140c2659ec38", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Tue, 03 Aug 2021 18:40:01 GMT" + "Date": "Mon, 25 Oct 2021 21:23:50 GMT" }, "ResponseBody": { "error": { @@ -98,7 +98,7 @@ } }, { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -108,10 +108,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c5b196123ec3364299c0c4c6dcb88f90-276ba6b06340544e-00", + "traceparent": "00-4a4826c493664d4a93eab4ba5080c6ea-b588a5343d1f6b4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "d85ee288a420af625bce0d2748754fc8", "x-ms-return-client-request-id": "true" @@ -127,14 +127,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6a3a0314-1ed6-4d66-ac71-20cfc391bc45", + "apim-request-id": "c16a0ac3-15d0-4a25-9ad0-f2b9f2adaadd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:01 GMT", + "Date": "Mon, 25 Oct 2021 21:23:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -156,6 +156,6 @@ "Variables": { "RandomSeed": "1557994243", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json index 1c0426f103b4..a00a43a30694 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-25a389082eba6d4ea0018c0e42533614-1e15e0dd6dca974e-00", + "traceparent": "00-56b8dfc1b2ddd24792a99784917957db-736c7beda44dfc44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "fb9f47ae04f9d825012386a2a51b9727", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91eb4c01-5bc7-4826-8df6-71f2326b452e", + "apim-request-id": "3f10da42-9f40-41c6-832d-da4c4fdee468", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:02 GMT", + "Date": "Mon, 25 Oct 2021 21:23:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -56,7 +56,7 @@ } }, { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -66,10 +66,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-edee1f5a486e874fb106a826e4131833-3856254ca63bae4d-00", + "traceparent": "00-95e12af9d619274ebd130b54dfcb4189-4e413d47a2bd0d48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5aa0f7e4723c7c582e8ca602e03d8c8c", "x-ms-return-client-request-id": "true" @@ -85,10 +85,10 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "80f065cf-93ab-494c-9587-61a71fa121be", + "apim-request-id": "1f5501a3-cdf4-4620-8f74-03a96812afdd", "Content-Length": "224", "Content-Type": "application/json", - "Date": "Tue, 03 Aug 2021 18:40:02 GMT" + "Date": "Mon, 25 Oct 2021 21:23:53 GMT" }, "ResponseBody": { "error": { @@ -98,7 +98,7 @@ } }, { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/languages", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -108,10 +108,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2c837962191161469054096447d863ba-9178359f7e7f4143-00", + "traceparent": "00-218395977534534faeb489550ce85ccc-f10b4b1a8acf564b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "1a26406b44799ec461ce0951aebc7b46", "x-ms-return-client-request-id": "true" @@ -127,14 +127,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c512ee2b-ae2e-4d92-9f99-ddee25be5705", + "apim-request-id": "9b3da1a0-5d88-4ccf-bf29-84b1fc1ee708", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:02 GMT", + "Date": "Mon, 25 Oct 2021 21:23:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -156,6 +156,6 @@ "Variables": { "RandomSeed": "1997725308", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index 528dc90a72e4..6b51ddfc229c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f60c87e706e4224eb77e8fad728d14b9-11d6cb00a0d9944c-00", + "traceparent": "00-87f1cc1bc3c8364b8e49412cfeed7167-30f0c43fff10b946-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "af25edec94c2cbbfd63455e84047f9b5", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d40be74e-f95e-4c73-b257-4cec701677fd", + "apim-request-id": "1b6cb867-7e75-4494-bb4d-0b84289ccc39", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:01 GMT", + "Date": "Mon, 25 Oct 2021 21:23:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "514682034", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json index 8c1ba8415262..2e4f7832579b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-62b5e46b89f2b24481df306ec35641bc-afa006d995339e47-00", + "traceparent": "00-7415b1bcef0bef42989c05543308a270-7b84ccc641c42649-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "66b8ef6aed4353af1a0a6380bef4513f", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4a578e6-5120-411e-bdab-0c79a2757a9c", + "apim-request-id": "c5ba5548-51f8-45d5-8cec-810e6fb33b6b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:02 GMT", + "Date": "Mon, 25 Oct 2021 21:23:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "1998010767", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json index 0d1ced7eec41..264683ac2c5f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fcf3ec3edfd4d6469761cf5cd913bf7a-a33b1c82c4a7be41-00", + "traceparent": "00-8f9a543dd578ba4e8bfb61569956c8c1-8b91295f57cbe947-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "9c096f0bd3a36f626316eda5be1e28c8", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7212555-1378-4ebb-8bfe-77287c75f27a", + "apim-request-id": "e58125a6-9aab-49cc-a096-08de2b0b6037", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:01 GMT", + "Date": "Mon, 25 Oct 2021 21:23:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ @@ -49,7 +49,7 @@ "category": "Organization", "offset": 4, "length": 9, - "confidenceScore": 0.93 + "confidenceScore": 0.97 } ], "warnings": [] @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "665053590", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json index cca10e6522fe..746555c1c4d9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4c236aad6709514a97b7313db7f82a8a-e0eae97e1d36dd43-00", + "traceparent": "00-0524d7463eb8954383c70fef0b7295c9-bcc2bf68a2b82d44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "a71f02631f3c7a05f4cb179d2fb85aac", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c57ea9ce-fa27-48c5-9969-9fd7cf302212", + "apim-request-id": "93815212-4fb2-4388-b0ad-015d18c54963", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:02 GMT", + "Date": "Mon, 25 Oct 2021 21:23:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [ @@ -49,7 +49,7 @@ "category": "Organization", "offset": 4, "length": 9, - "confidenceScore": 0.93 + "confidenceScore": 0.97 } ], "warnings": [] @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "1077947182", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json index 3fa3dde5ef83..1bfbaec2c8e1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-36e1a5a33f25b849a8bb3fed38e26be9-c40780ab37ead64b-00", + "traceparent": "00-a272d74de200b64ba0a049b91dba58b2-a89c75d25a90664c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "a12918df519b0dc53f87435017a62e99", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ab53c6b-a6c1-4d76-bab7-8f4c2a06da85", + "apim-request-id": "5ba1a67d-30eb-4c5d-8bbc-667442214f6a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:01 GMT", + "Date": "Mon, 25 Oct 2021 21:23:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "1277894095", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json index 0ed5573f13de..a556e3220ca9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://tacanaryjava.cognitiveservices.azure.com/text/analytics/v3.2-preview.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://javatextanalyticstestresources.cognitiveservices.azure.com/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6b07fcb85969f44f93ce7704a8b364a0-9f01a63719d6db40-00", + "traceparent": "00-262cba1a5ac7c84683d5c714198faadd-bc59a1cbbe70b741-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20210803.1", - "(.NET 5.0.8; Microsoft Windows 10.0.19043)" + "azsdk-net-AI.TextAnalytics/5.2.0-alpha.20211025.1", + "(.NET Core 3.1.20; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "05b9b9c88ccd2f82a72e96b9014b88fb", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aafb7ac9-d375-4717-8eb9-5327cdcb410e", + "apim-request-id": "914e3764-e932-4e5d-a6be-d86652e12b1c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 03 Aug 2021 18:40:02 GMT", + "Date": "Mon, 25 Oct 2021 21:23:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "1551033461", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://tacanaryjava.cognitiveservices.azure.com/" + "TEXT_ANALYTICS_ENDPOINT": "https://javatextanalyticstestresources.cognitiveservices.azure.com/" } } \ 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..39b4eedbd930 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SingleCategoryClassifyTests.cs @@ -0,0 +1,295 @@ +// 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); + } + + [RecordedTest] + public async Task SingleCategoryClassifyWithMultipleActions() + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + SingleCategoryClassifyActions = new List() + { + new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) + { + DisableServiceLogs = true, + ActionName = "SingleCategoryClassifyWithDisabledServiceLogs" + }, + new SingleCategoryClassifyAction(TestEnvironment.SingleClassificationProjectName, TestEnvironment.SingleClassificationDeploymentName) + { + ActionName = "SingleCategoryClassify" + } + } + }; + + 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); + + IList expected = new List { "SingleCategoryClassify", "SingleCategoryClassifyWithDisabledServiceLogs" }; + CollectionAssert.AreEquivalent(expected, singleCategoryClassifyActionsResults.Select(result => result.ActionName)); + } + 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.Classification); + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsModelFactoryTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsModelFactoryTests.cs index e28f887fed25..3b02266ee5fc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsModelFactoryTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsModelFactoryTests.cs @@ -136,6 +136,24 @@ public void AnalyzeActionsResult() TextAnalyticsModelFactory.AnalyzeSentimentActionResult(default, default) }; + var recognizeCustomEntitiesActionResults = new List() + { + TextAnalyticsModelFactory.RecognizeCustomEntitiesActionResult(default, default), + TextAnalyticsModelFactory.RecognizeCustomEntitiesActionResult(default, default) + }; + + var singleCategoryClassifyActionResults = new List() + { + TextAnalyticsModelFactory.SingleCategoryClassifyActionResult(default, default), + TextAnalyticsModelFactory.SingleCategoryClassifyActionResult(default, default) + }; + + var multiCategoryClassifyActionResults = new List() + { + TextAnalyticsModelFactory.MultiCategoryClassifyActionResult(default, default), + TextAnalyticsModelFactory.MultiCategoryClassifyActionResult(default, default) + }; + var actionsResult = TextAnalyticsModelFactory.AnalyzeActionsResult( extractKeyPhrasesActionResults, recognizeEntitiesActionResults, @@ -162,7 +180,10 @@ public void AnalyzeActionsResult() recognizePiiEntitiesActionResults, recognizeLinkedEntitiesActionResults, analyzeSentimentActionResults, - extractSummaryActionResults); + extractSummaryActionResults, + recognizeCustomEntitiesActionResults, + singleCategoryClassifyActionResults, + multiCategoryClassifyActionResults); CollectionAssert.AreEquivalent(extractKeyPhrasesActionResults, actionsResult.ExtractKeyPhrasesResults); CollectionAssert.AreEquivalent(recognizeEntitiesActionResults, actionsResult.RecognizeEntitiesResults); @@ -170,6 +191,9 @@ public void AnalyzeActionsResult() CollectionAssert.AreEquivalent(recognizeLinkedEntitiesActionResults, actionsResult.RecognizeLinkedEntitiesResults); CollectionAssert.AreEquivalent(analyzeSentimentActionResults, actionsResult.AnalyzeSentimentResults); CollectionAssert.AreEquivalent(extractSummaryActionResults, actionsResult.ExtractSummaryResults); + CollectionAssert.AreEquivalent(recognizeCustomEntitiesActionResults, actionsResult.RecognizeCustomEntitiesResults); + CollectionAssert.AreEquivalent(singleCategoryClassifyActionResults, actionsResult.SingleCategoryClassifyResults); + CollectionAssert.AreEquivalent(multiCategoryClassifyActionResults, actionsResult.MultiCategoryClassifyResults); } [Test] @@ -177,8 +201,9 @@ public void ExtractSummaryActionResultWithoutError() { var result = TextAnalyticsModelFactory.ExtractSummaryResultCollection(new List(), default, default); var completedOn = DateTimeOffset.UtcNow; + string actionName = "ExtractSummary"; - var actionResult = TextAnalyticsModelFactory.ExtractSummaryActionResult(result, completedOn); + var actionResult = TextAnalyticsModelFactory.ExtractSummaryActionResult(result, actionName, completedOn); Assert.AreEqual(result, actionResult.DocumentsResults); Assert.AreEqual(completedOn, actionResult.CompletedOn); @@ -193,8 +218,9 @@ public void ExtractSummaryActionResultWithError() var completedOn = DateTimeOffset.UtcNow; var code = "code"; var message = "message"; + string actionName = "ExtractSummary"; - var actionResult = TextAnalyticsModelFactory.ExtractSummaryActionResult(completedOn, code, message); + var actionResult = TextAnalyticsModelFactory.ExtractSummaryActionResult(actionName, completedOn, code, message); Assert.Throws(() => _ = actionResult.DocumentsResults); Assert.AreEqual(completedOn, actionResult.CompletedOn); 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..6ce10dcdc3ce --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassify.cs @@ -0,0 +1,94 @@ +// 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 + string projectName = TestEnvironment.SingleClassificationProjectName; + string deploymentName = TestEnvironment.SingleClassificationDeploymentName; + + 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) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.Classification.Category}\" predicted with a confidence score of {documentResults.Classification.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..3f5e9c39e722 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyAsync.cs @@ -0,0 +1,81 @@ +// 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 + string projectName = TestEnvironment.SingleClassificationProjectName; + string deploymentName = TestEnvironment.SingleClassificationDeploymentName; + + 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) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.Classification.Category}\" predicted with a confidence score of {documentResults.Classification.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..30204d8b1d12 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenience.cs @@ -0,0 +1,91 @@ +// 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 + string projectName = TestEnvironment.SingleClassificationProjectName; + string deploymentName = TestEnvironment.SingleClassificationDeploymentName; + + 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) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.Classification.Category}\" predicted with a confidence score of {documentResults.Classification.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..d2ae576b15e5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample10_SingleCategoryClassifyConvenienceAsync.cs @@ -0,0 +1,89 @@ +// 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) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (SingleCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + Console.WriteLine($" Class category \"{documentResults.Classification.Category}\" predicted with a confidence score of {documentResults.Classification.ConfidenceScore}."); + Console.WriteLine(); + } + } + } + #endregion Snippet:TextAnalyticsSingleCategoryClassifyAsyncViewResults + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassify.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassify.cs new file mode 100644 index 000000000000..9521de73c699 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassify.cs @@ -0,0 +1,103 @@ +// 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 MultiCategoryClassify() + { + // 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 + string projectName = TestEnvironment.MultiClassificationProjectName; + string deploymentName = TestEnvironment.MultiClassificationDeploymentName; + + var multiCategoryClassifyAction = new MultiCategoryClassifyAction(projectName, deploymentName); + + TextAnalyticsActions actions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() { multiCategoryClassifyAction } + }; + + // 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 multiClassificationActionResults = documentsInPage.MultiCategoryClassifyResults; + + foreach (MultiCategoryClassifyActionResult classificationActionResults in multiClassificationActionResults) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (MultiCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + if (documentResults.Classifications.Count > 0) + { + Console.WriteLine($" The following classes were predicted for this document:"); + + foreach (ClassificationCategory classification in documentResults.Classifications) + { + Console.WriteLine($" Class category \"{classification.Category}\" predicted with a confidence score of {classification.ConfidenceScore}."); + } + + Console.WriteLine(); + } + } + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyAsync.cs new file mode 100644 index 000000000000..16cf9ef2c50a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyAsync.cs @@ -0,0 +1,90 @@ +// 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 MultiCategoryClassifyAsync() + { + // 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 + string projectName = TestEnvironment.MultiClassificationProjectName; + string deploymentName = TestEnvironment.MultiClassificationDeploymentName; + + var multiCategoryClassifyAction = new MultiCategoryClassifyAction(projectName, deploymentName); + + TextAnalyticsActions actions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() { multiCategoryClassifyAction } + }; + + // 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 multiClassificationActionResults = documentsInPage.MultiCategoryClassifyResults; + + foreach (MultiCategoryClassifyActionResult classificationActionResults in multiClassificationActionResults) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (MultiCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + if (documentResults.Classifications.Count > 0) + { + Console.WriteLine($" The following classes were predicted for this document:"); + + foreach (ClassificationCategory classification in documentResults.Classifications) + { + Console.WriteLine($" Class category \"{classification.Category}\" predicted with a confidence score of {classification.ConfidenceScore}."); + } + + Console.WriteLine(); + } + } + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyConvenience.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyConvenience.cs new file mode 100644 index 000000000000..5fb94d6e75f8 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyConvenience.cs @@ -0,0 +1,100 @@ +// 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 MultiCategoryClassifyConvenience() + { + // 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 + string projectName = TestEnvironment.MultiClassificationProjectName; + string deploymentName = TestEnvironment.MultiClassificationDeploymentName; + + var multiCategoryClassifyAction = new MultiCategoryClassifyAction(projectName, deploymentName); + + TextAnalyticsActions actions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() { multiCategoryClassifyAction } + }; + + // 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 multiClassificationActionResults = documentsInPage.MultiCategoryClassifyResults; + + foreach (MultiCategoryClassifyActionResult classificationActionResults in multiClassificationActionResults) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (MultiCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + if (documentResults.Classifications.Count > 0) + { + Console.WriteLine($" The following classes were predicted for this document:"); + + foreach (ClassificationCategory classification in documentResults.Classifications) + { + Console.WriteLine($" Class category \"{classification.Category}\" predicted with a confidence score of {classification.ConfidenceScore}."); + } + + Console.WriteLine(); + } + } + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyConvenienceAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyConvenienceAsync.cs new file mode 100644 index 000000000000..e41b77c17720 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample11_MultiCategoryClassifyConvenienceAsync.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.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 MultiCategoryClassifyConvenienceAsync() + { + // 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:TextAnalyticsMultiCategoryClassifyAsync + // 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.MultiClassificationProjectName; + string deploymentName = TestEnvironment.MultiClassificationDeploymentName; +#endif + + var multiCategoryClassifyAction = new MultiCategoryClassifyAction(projectName, deploymentName); + + TextAnalyticsActions actions = new TextAnalyticsActions() + { + MultiCategoryClassifyActions = new List() { multiCategoryClassifyAction } + }; + + // Start analysis process. + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchInput, actions); + + await operation.WaitForCompletionAsync(); + #endregion Snippet:TextAnalyticsMultiCategoryClassifyAsync + + #region Snippet:TextAnalyticsMultiCategoryClassifyOperationStatus + // 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:TextAnalyticsMultiCategoryClassifyOperationStatus + + #region Snippet:TextAnalyticsMultiCategoryClassifyAsyncViewResults + // View operation results. + await foreach (AnalyzeActionsResult documentsInPage in operation.Value) + { + IReadOnlyCollection multiClassificationActionResults = documentsInPage.MultiCategoryClassifyResults; + + foreach (MultiCategoryClassifyActionResult classificationActionResults in multiClassificationActionResults) + { + Console.WriteLine($" Action name: {classificationActionResults.ActionName}"); + foreach (MultiCategoryClassifyResult documentResults in classificationActionResults.DocumentsResults) + { + if (documentResults.Classifications.Count > 0) + { + Console.WriteLine($" The following classes were predicted for this document:"); + + foreach (ClassificationCategory classification in documentResults.Classifications) + { + Console.WriteLine($" Class category \"{classification.Category}\" predicted with a confidence score of {classification.ConfidenceScore}."); + } + + Console.WriteLine(); + } + } + } + } + #endregion Snippet:TextAnalyticsMultiCategoryClassifyAsyncViewResults + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntities.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntities.cs new file mode 100644 index 000000000000..058147cd6499 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntities.cs @@ -0,0 +1,109 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Threading; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Tests.Samples +{ + public partial class TextAnalyticsSamples : SamplesBase + { + [Test] + public void RecognizeCustomEntities() + { + // Create a text analytics client. + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + // Create input documents. + string documentA = @"A recent report by the Government Accountability Office (GAO) found that the dramatic + increase in oil and natural gas development on federal lands over the past six years + has stretched the staff of the BLM to a point that it has been unable to meet its + environmental protection responsibilities."; + + string documentB = @"David Schmidt, senior vice president--Food Safety, International Food Information + Council (IFIC), Washington, D.C., discussed the physical activity component."; + + var batchDocuments = new List + { + new TextDocumentInput("1", documentA) + { + Language = "en", + }, + new TextDocumentInput("2", documentB) + { + Language = "en", + } + }; + + // prepare actions. + var actions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + // 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 customEntitiesActionResults = documentsInPage.RecognizeCustomEntitiesResults; + foreach (RecognizeCustomEntitiesActionResult customEntitiesActionResult in customEntitiesActionResults) + { + Console.WriteLine($" Action name: {customEntitiesActionResult.ActionName}"); + int docNumber = 1; + foreach (RecognizeEntitiesResult documentResults in customEntitiesActionResult.DocumentsResults) + { + Console.WriteLine($" Document #{docNumber++}"); + Console.WriteLine($" Recognized the following {documentResults.Entities.Count} entities:"); + + foreach (CategorizedEntity entity in documentResults.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Category: {entity.Category}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" ConfidenceScore: {entity.ConfidenceScore}"); + Console.WriteLine($" SubCategory: {entity.SubCategory}"); + } + Console.WriteLine(""); + } + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesAsync.cs new file mode 100644 index 000000000000..a32f9ead23f3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesAsync.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Tests.Samples +{ + public partial class TextAnalyticsSamples : SamplesBase + { + [Test] + public async Task RecognizeCustomEntitiesAsync() + { + // 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:RecognizeCustomEntitiesActionAsync + // Create input documents. + string documentA = @"We love this trail and make the trip every year. The views are breathtaking and well + worth the hike! Yesterday was foggy though, so we missed the spectacular views. + We tried again today and it was amazing. Everyone in my family liked the trail although + it was too challenging for the less athletic among us."; + + string documentB = @"Last week we stayed at Hotel Foo to celebrate our anniversary. The staff knew about + our anniversary so they helped me organize a little surprise for my partner. + The room was clean and with the decoration I requested. It was perfect!"; + + var batchDocuments = new List + { + new TextDocumentInput("1", documentA) + { + Language = "en", + }, + new TextDocumentInput("2", documentB) + { + Language = "en", + } + }; + + // prepare actions. +#if SNIPPET + string projectName = ""; + string deploymentName = ""; + var actions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(projectName, deploymentName); + } + }; +#else + var actions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; +#endif + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchDocuments, actions); + + await operation.WaitForCompletionAsync(); + #endregion + + #region Snippet:RecognizeCustomEntitiesActionOperationStatus + // 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 + + #region Snippet:RecognizeCustomEntitiesActionAsyncViewResults + + await foreach (AnalyzeActionsResult documentsInPage in operation.Value) + { + IReadOnlyCollection customEntitiesActionResults = documentsInPage.RecognizeCustomEntitiesResults; + foreach (RecognizeCustomEntitiesActionResult customEntitiesActionResult in customEntitiesActionResults) + { + Console.WriteLine($" Action name: {customEntitiesActionResult.ActionName}"); + int docNumber = 1; + foreach (RecognizeEntitiesResult documentResults in customEntitiesActionResult.DocumentsResults) + { + Console.WriteLine($" Document #{docNumber++}"); + Console.WriteLine($" Recognized the following {documentResults.Entities.Count} entities:"); + + foreach (CategorizedEntity entity in documentResults.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Category: {entity.Category}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" ConfidenceScore: {entity.ConfidenceScore}"); + Console.WriteLine($" SubCategory: {entity.SubCategory}"); + } + Console.WriteLine(""); + } + } + } + #endregion + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesConvenience.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesConvenience.cs new file mode 100644 index 000000000000..cae1807f58d3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesConvenience.cs @@ -0,0 +1,104 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Threading; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Tests.Samples +{ + public partial class TextAnalyticsSamples : SamplesBase + { + [Test] + public void RecognizeCustomEntitiesConvenience() + { + // Create a text analytics client. + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + // Create input documents. + string documentA = @"We love this trail and make the trip every year. The views are breathtaking and well + worth the hike! Yesterday was foggy though, so we missed the spectacular views. + We tried again today and it was amazing. Everyone in my family liked the trail although + it was too challenging for the less athletic among us."; + + string documentB = @"Last week we stayed at Hotel Foo to celebrate our anniversary. The staff knew about + our anniversary so they helped me organize a little surprise for my partner. + The room was clean and with the decoration I requested. It was perfect!"; + + var batchDocuments = new List + { + documentA, + documentB + }; + + // prepare actions. + var actions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + // 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 customEntitiesActionResults = documentsInPage.RecognizeCustomEntitiesResults; + foreach (RecognizeCustomEntitiesActionResult customEntitiesActionResult in customEntitiesActionResults) + { + Console.WriteLine($" Action name: {customEntitiesActionResult.ActionName}"); + int docNumber = 1; + foreach (RecognizeEntitiesResult documentResults in customEntitiesActionResult.DocumentsResults) + { + Console.WriteLine($" Document #{docNumber++}"); + Console.WriteLine($" Recognized the following {documentResults.Entities.Count} entities:"); + + foreach (CategorizedEntity entity in documentResults.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Category: {entity.Category}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" ConfidenceScore: {entity.ConfidenceScore}"); + Console.WriteLine($" SubCategory: {entity.SubCategory}"); + } + Console.WriteLine(""); + } + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesConvenienceAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesConvenienceAsync.cs new file mode 100644 index 000000000000..cc0953c32001 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample9_RecognizeCustomEntitiesConvenienceAsync.cs @@ -0,0 +1,79 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Tests.Samples +{ + public partial class TextAnalyticsSamples : SamplesBase + { + [Test] + public async Task RecognizeCustomEntitiesConvenienceAsync() + { + // Create a text analytics client. + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + // Create input documents. + string documentA = @"We love this trail and make the trip every year. The views are breathtaking and well + worth the hike! Yesterday was foggy though, so we missed the spectacular views. + We tried again today and it was amazing. Everyone in my family liked the trail although + it was too challenging for the less athletic among us."; + + string documentB = @"Last week we stayed at Hotel Foo to celebrate our anniversary. The staff knew about + our anniversary so they helped me organize a little surprise for my partner. + The room was clean and with the decoration I requested. It was perfect!"; + + var batchDocuments = new List + { + documentA, + documentB + }; + + // prepare actions + var actions = new TextAnalyticsActions() + { + RecognizeCustomEntitiesActions = new List() + { + new RecognizeCustomEntitiesAction(TestEnvironment.RecognizeCustomEntitiesProjectName, TestEnvironment.RecognizeCustomEntitiesDeploymentName) + } + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchDocuments, actions); + + await operation.WaitForCompletionAsync(); + + await foreach (AnalyzeActionsResult documentsInPage in operation.Value) + { + IReadOnlyCollection customEntitiesActionResults = documentsInPage.RecognizeCustomEntitiesResults; + foreach (RecognizeCustomEntitiesActionResult customEntitiesActionResult in customEntitiesActionResults) + { + Console.WriteLine($" Action name: {customEntitiesActionResult.ActionName}"); + int docNumber = 1; + foreach (RecognizeEntitiesResult documentResults in customEntitiesActionResult.DocumentsResults) + { + Console.WriteLine($" Document #{docNumber++}"); + Console.WriteLine($" Recognized the following {documentResults.Entities.Count} entities:"); + + foreach (CategorizedEntity entity in documentResults.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Category: {entity.Category}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" ConfidenceScore: {entity.ConfidenceScore}"); + Console.WriteLine($" SubCategory: {entity.SubCategory}"); + } + Console.WriteLine(""); + } + } + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs index 03237fad9734..2aabd7b9e81f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs @@ -81,6 +81,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a int docNumber = 1; foreach (RecognizeEntitiesActionResult entitiesActionResults in entitiesResults) { + Console.WriteLine($" Action name: {entitiesActionResults.ActionName}"); foreach (RecognizeEntitiesResult documentResults in entitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs index 2dfb36930226..cf4fb5d7ab40 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs @@ -72,6 +72,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a int docNumber = 1; foreach (RecognizeEntitiesActionResult entitiesActionResults in entitiesResults) { + Console.WriteLine($" Action name: {entitiesActionResults.ActionName}"); foreach (RecognizeEntitiesResult documentResults in entitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenience.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenience.cs index f6938fd21039..29da5702226a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenience.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenience.cs @@ -75,6 +75,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a int docNumber = 1; foreach (RecognizeEntitiesActionResult entitiesActionResults in entitiesResults) { + Console.WriteLine($" Action name: {entitiesActionResults.ActionName}"); foreach (RecognizeEntitiesResult documentResults in entitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenienceAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenienceAsync.cs index e2720f1dd877..bdd539f34b71 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenienceAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenienceAsync.cs @@ -67,6 +67,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a int docNumber = 1; foreach (RecognizeEntitiesActionResult entitiesActionResults in entitiesResults) { + Console.WriteLine($" Action name: {entitiesActionResults.ActionName}"); foreach (RecognizeEntitiesResult documentResults in entitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); diff --git a/sdk/textanalytics/test-resources.json b/sdk/textanalytics/test-resources.json.disabled similarity index 100% rename from sdk/textanalytics/test-resources.json rename to sdk/textanalytics/test-resources.json.disabled diff --git a/sdk/textanalytics/tests.yml b/sdk/textanalytics/tests.yml index 0214321c2d5d..181a8f3213fd 100644 --- a/sdk/textanalytics/tests.yml +++ b/sdk/textanalytics/tests.yml @@ -9,4 +9,14 @@ extends: SubscriptionConfiguration: $(sub-config-azure-cloud-test-resources) Canary: SubscriptionConfiguration: $(sub-config-azure-cloud-test-resources) - Location: 'centraluseuap' \ No newline at end of file + Location: 'centraluseuap' + # temporary env vars for custom text features + EnvVars: + TEXT_ANALYTICS_ENDPOINT: $(js-textanalytics-test-service-endpoint) + TEXT_ANALYTICS_API_KEY: $(js-textanalytics-api-key-new) + TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME: $(js-single-category-classify-project-name) + TEXTANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME: $(js-single-category-classify-deployment-name) + TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME: $(js-multi-category-classify-project-name) + TEXTANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME: $(js-multi-category-classify-deployment-name) + TEXTANALYTICS_CUSTOM_ENTITIES_PROJECT_NAME: $(js-recognize-custom-entities-project-name) + TEXTANALYTICS_CUSTOM_ENTITIES_DEPLOYMENT_NAME: $(js-recognize-custom-entities-deployment-name) \ No newline at end of file